Re: Enum name gets lost.

2014-02-04 Thread Michael Mulqueen
s.org/en/latest/api.html#alembic.environment.EnvironmentContext.configure.params.render_item > > > > On Feb 4, 2014, at 9:20 AM, Michael Mulqueen > > > wrote: > > Sorry, I should have noted the versions earlier. > > SQLAlchemy: 0.7.4 > Alembic: 0.6.3 > Python: 2.7.3 > > M

Re: Enum name gets lost.

2014-02-04 Thread Michael Mulqueen
Sorry, I should have noted the versions earlier. SQLAlchemy: 0.7.4 Alembic: 0.6.3 Python: 2.7.3 Mike On Tuesday, February 4, 2014 1:56:57 PM UTC, Michael Mulqueen wrote: > > I'm hoping someone can help with this. My code is all built on SA's > declarative base. > >

Enum name gets lost.

2014-02-04 Thread Michael Mulqueen
I'm hoping someone can help with this. My code is all built on SA's declarative base. What's happening is that from my code: disposition = Column(Enum("Release", "Rework", name="disposition_enum")) Alembic autogenerate is producing this: sa.Column('disposition', sa.Enum('Release', 'Rework'),