New issue
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
Can't rename table with schema specified on PostgreSQL #32
Labels
bug
Something isn't working
Comments
Changes by Dmitriy Bogomolov (@dvbogomolov):
|
2 similar comments
Changes by Dmitriy Bogomolov (@dvbogomolov):
|
Changes by Dmitriy Bogomolov (@dvbogomolov):
|
Changes by Michael Bayer (@zzzeek):
|
Changes by Michael Bayer (@zzzeek):
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Migrated issue, originally created by Dmitriy Bogomolov (@dvbogomolov)
op.rename_table('a', 'b', 'my_schema') gives invalid DDL:
ALTER TABLE my_schema.a RENAME TO my_schema.b
Valid DDL is: ALTER TABLE my_schema.a RENAME TO b
http://www.postgresql.org/docs/9.0/static/sql-altertable.html
op.rename_table('my_schema.a', 'b') also gives invalid DDL:
ALTER TABLE "my_schema.a" RENAME TO b
The text was updated successfully, but these errors were encountered: