Re: [sqlalchemy] Re: Alembic 0.4.0 Released

2012-10-24 Thread junepeach
Thank you very much, Michael. It is exactly what I need. On Tuesday, October 23, 2012 5:38:36 PM UTC-4, Michael Bayer wrote: that might not be supported yet. it just emits AUTO_INCREMENT for now. Looking at MySQL's docs it seems like you should just emit an ALTER for that explicitly:

[sqlalchemy] Re: Alembic 0.4.0 Released

2012-10-23 Thread junepeach
Alembic is cool :) How does AUTO_INCREMENT work for the below situation in MySQL: auto_increment = 10, or any integer which is not 1 (default value)? Thanks, Junepeach On Monday, October 1, 2012 8:27:54 PM UTC-4, Michael Bayer wrote: Alembic 0.4.0 is now available. Alembic is the

Re: [sqlalchemy] Re: Alembic 0.4.0 Released

2012-10-23 Thread Michael Bayer
that might not be supported yet. it just emits AUTO_INCREMENT for now. Looking at MySQL's docs it seems like you should just emit an ALTER for that explicitly: op.execute(ALTER TABLE tbl AUTO_INCREMENT = 100) On Oct 23, 2012, at 5:18 PM, junepeach wrote: Alembic is cool :) How does