[sqlalchemy] Alter a Sequence after creation...

2011-07-14 Thread Christian Klinger
Hi, i try to alter Sequence after this Sequence is created. I guess the sqlalchemy event system is the place where i should look. I tried this one with no succes... from sqlalchemy import event from sqlalchemy import DDL from sqlalchemy import * from sqlalchemy.ext.declarative import

Re: [sqlalchemy] Alter a Sequence after creation...

2011-07-14 Thread Michael Bayer
Christian Klinger wrote: Hi, i try to alter Sequence after this Sequence is created. I guess the sqlalchemy event system is the place where i should look. I tried this one with no succes... from sqlalchemy import event from sqlalchemy import DDL from sqlalchemy import * from