On Sep 26, 2011, at 2:50 AM, Nathan Robertson wrote:
> Column('custid', Integer, Sequence('test.customer_custid_seq'),
> primary_key=True),
for the Sequence, as with all schema items, you need to specify the "schema"
portion separately so that SQLAlchemy knows where each token starts and ends:
Sequence("customer_custid_seq", schema="test")
--
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.