the "INTEGER" column coming out is a bug, i just checked in 2167 for
that. for the "SERIAL" column i just checked the pg docs and noticed
that youre expecting "BIGSERIAL", so I put a little conditional in for
that in rev 2168. you should now get
CREATE TABLE company (
company_id BIGSERIAL NOT NULL,
another_bigint BIGINT,
PRIMARY KEY (company_id)
)
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---