We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrated issue, originally created by Michael Howitz (@icemac)
The following code:
def upgrade(): op.add_column('user', sa.Column('foobar', sa.String(8), index=True))
produces:
ALTER TABLE "user" ADD COLUMN foobar VARCHAR(8);
index=True is silently ignored. There is no log output of INFO level or above, too. I'd expect at least a WARNING.
index=True
I'm using alembic 0.6.3 and SQLAlchemy 0.9.2.
The text was updated successfully, but these errors were encountered:
Changes by Michael Bayer (@zzzeek):
Sorry, something went wrong.
Michael Bayer (@zzzeek) wrote:
Create index in add_column if requested
Fixes #174
→ 5d9ea4b
→ 8cf1620
No branches or pull requests
Migrated issue, originally created by Michael Howitz (@icemac)
The following code:
produces:
index=True
is silently ignored. There is no log output of INFO level or above, too.I'd expect at least a WARNING.
I'm using alembic 0.6.3 and SQLAlchemy 0.9.2.
The text was updated successfully, but these errors were encountered: