From: Ann Kamyshnikova Date: Wed, 2 Oct 2013 09:37:46 +0000 (+0400) Subject: Fix downgrade in migration X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=89ec5a138554e5d9bdf1d6a9f6a00d304599a87a;p=openstack-build%2Fneutron-build.git Fix downgrade in migration In 477a4488d3f4_ml2_vxlan_type_driver name of table ml2_vxlan_endpoints to drop was not correct. Change-Id: I758c42251b2d5bcc921c50394a1313a1ed4ae106 --- diff --git a/neutron/db/migration/alembic_migrations/versions/477a4488d3f4_ml2_vxlan_type_driver.py b/neutron/db/migration/alembic_migrations/versions/477a4488d3f4_ml2_vxlan_type_driver.py index 8f54b51b8..eeb28539d 100644 --- a/neutron/db/migration/alembic_migrations/versions/477a4488d3f4_ml2_vxlan_type_driver.py +++ b/neutron/db/migration/alembic_migrations/versions/477a4488d3f4_ml2_vxlan_type_driver.py @@ -66,4 +66,4 @@ def downgrade(active_plugins=None, options=None): return op.drop_table('ml2_vxlan_allocations') - op.drop_table('ml2_vxlan_endpoint') + op.drop_table('ml2_vxlan_endpoints')