[sqlalchemy] Setting the starting value of an autoincrement field?

2010-09-20 Thread Russell Warren
Is there a way in the standard SQLA dialect support to set the starting value of an autoincrement field in the SQLA table definition? I can't see anything in the docs or code, but something like this is what I'm thinking: empnum = Column(sqla.Integer, primary_key = True,

Re: [sqlalchemy] Setting the starting value of an autoincrement field?

2010-09-20 Thread A.M.
On Sep 20, 2010, at 11:00 PM, Russell Warren wrote: Is there a way in the standard SQLA dialect support to set the starting value of an autoincrement field in the SQLA table definition? I can't see anything in the docs or code, but something like this is what I'm thinking: empnum =