Hi I have yet another problem with tgext.pluggable.

I Tried putting this model definition in my plugin

tag_article= Table('tag_article', metadata,
    Column('tag_id', Integer, ForeignKey('tag.id'), primary_key=True),
    Column('article_id', Integer, ForeignKey('article.id'), 
primary_key=True))

class Tag(DeclarativeBase):
    __tablename__ = 'tag'

    id = Column(Integer, autoincrement=True, primary_key=True)
    text= Column(Unicode(200))

class Article(DeclarativeBase):
    __tablename__ = 'article'

    id = Column(Integer, autoincrement=True, primary_key=True)
    text= Column(Unicode(2000) )

    tags = relation(Tag, secondary=tag_article, backref='articles')

but whenever I start TG:
sqlalchemy.exc.ArgumentError: Could not determine join condition between 
parent/child tables on relationship Article.tags.  Specify a 'primaryjoin' 
expression.  If 'secondary' is present, 'secondaryjoin' is needed as well.

I tried to move this model definition inside the main project and it works 
normally.

-- 
You received this message because you are subscribed to the Google Groups 
"TurboGears" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/turbogears?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to