We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents eee5b39 + 32f191c commit ad307b3Copy full SHA for ad307b3
nova/db/main/migrations/versions/16f1fbcab42b_resolve_shadow_table_diffs.py
@@ -44,12 +44,14 @@ def upgrade():
44
# 252_add_instance_extra_table; we shouldn't have created an index for the
45
# shadow table
46
47
- op.drop_index('shadow_instance_extra_idx', 'shadow_instance_extra')
+ op.drop_index(index_name='shadow_instance_extra_idx',
48
+ table_name='shadow_instance_extra')
49
50
# 373_migration_uuid; we shouldn't have created an index for the shadow
51
# table
52
- op.drop_index('shadow_migrations_uuid', 'shadow_migrations')
53
+ op.drop_index(index_name='shadow_migrations_uuid',
54
+ table_name='shadow_migrations')
55
56
# 298_mysql_extra_specs_binary_collation; we changed the collation on the
57
# main table but not the shadow table
0 commit comments