From f9019ea014bdfac3820f3f1eb46c81c359daccaa Mon Sep 17 00:00:00 2001 From: Henry Gessau Date: Sun, 1 May 2016 09:01:07 -0400 Subject: [PATCH] Annotate alembic migration for VLAN trunking Add a module comment on the script so that the information is displayed during alembic upgrade. Before: ... 7bbb25278f53 -> 89ab9a816d70, Rename ml2_network_segments table 0e66c5227a8a -> 45f8dd33480b, qos dscp db addition 45f8dd33480b -> 5abc0278ca73 5abc0278ca73 -> d3435b514502, Add device_id index to Port After: ... 7bbb25278f53 -> 89ab9a816d70, Rename ml2_network_segments table 0e66c5227a8a -> 45f8dd33480b, qos dscp db addition 45f8dd33480b -> 5abc0278ca73, Add support for VLAN trunking 5abc0278ca73 -> d3435b514502, Add device_id index to Port TrivialFix Change-Id: I53d95773c3a2c4152364f57568a6b2512995802a --- .../newton/expand/5abc0278ca73_add_support_for_vlan_trunking.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/neutron/db/migration/alembic_migrations/versions/newton/expand/5abc0278ca73_add_support_for_vlan_trunking.py b/neutron/db/migration/alembic_migrations/versions/newton/expand/5abc0278ca73_add_support_for_vlan_trunking.py index ace47bb2850..15f227c08ee 100644 --- a/neutron/db/migration/alembic_migrations/versions/newton/expand/5abc0278ca73_add_support_for_vlan_trunking.py +++ b/neutron/db/migration/alembic_migrations/versions/newton/expand/5abc0278ca73_add_support_for_vlan_trunking.py @@ -11,6 +11,8 @@ # under the License. # +"""Add support for VLAN trunking""" + revision = '5abc0278ca73' down_revision = '45f8dd33480b'