Found a solution. I changed this line from
Column('owner_id', Integer, ForeignKey('users.id'), primary_key=True),
to
Column('owner_id', Integer, ForeignKey('users.id')),And everything works like a charm. Regards, Laurent. Michael Bayer a écrit : > i dunno. try going to the postgres terminal and entering the table > definitions manually. > > > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/sqlalchemy?hl=en -~----------~----~----~----~------~----~------~--~---
