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 dmazhar
Hi. I have such lines in my autogenerated migration script:
op.drop_column(u'asset_ID', 'asset_type', schema=u'HARDWARE')
It's in downgrade section, and when I'm running downgrade it produces next SQL query:
ALTER TABLE [asset_ID] DROP COLUMN asset_type;
So the schema was omitted in this query and migration fails.
The text was updated successfully, but these errors were encountered:
Michael Bayer (@zzzeek) wrote:
→ 6235698
Sorry, something went wrong.
Changes by Michael Bayer (@zzzeek):
thank you
dmazhar wrote:
Thanks Mike. You're super fast.
No branches or pull requests
Migrated issue, originally created by dmazhar
Hi. I have such lines in my autogenerated migration script:
It's in downgrade section, and when I'm running downgrade it produces next SQL query:
So the schema was omitted in this query and migration fails.
The text was updated successfully, but these errors were encountered: