]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Fix downgrade in migration
authorAnn Kamyshnikova <akamyshnikova@mirantis.com>
Wed, 2 Oct 2013 09:37:46 +0000 (13:37 +0400)
committerAnn Kamyshnikova <akamyshnikova@mirantis.com>
Wed, 2 Oct 2013 09:37:46 +0000 (13:37 +0400)
In 477a4488d3f4_ml2_vxlan_type_driver name of table ml2_vxlan_endpoints to drop
was not correct.

Change-Id: I758c42251b2d5bcc921c50394a1313a1ed4ae106

neutron/db/migration/alembic_migrations/versions/477a4488d3f4_ml2_vxlan_type_driver.py

index 8f54b51b8109fabbfd6d7951156cba5a88dd38d7..eeb28539d1f9edf6762f8a2fdc970e62f67ce1a1 100644 (file)
@@ -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')