Tag the alembic migration revisions for Newton

This allows the database to be upgraded with the command:
  neutron-db-manage upgrade newton

Change-Id: I7a6f329a35b959eb699ecb9ff0b18e00ce50b8dd
This commit is contained in:
Abhishek Raut 2016-09-08 22:29:10 -07:00
parent cdf7ab939c
commit 6fbf2d1031
2 changed files with 15 additions and 3 deletions

View File

@ -20,12 +20,18 @@ Create Date: 2016-07-21 05:03:35.369938
"""
from alembic import op
from sqlalchemy.engine import reflection
from neutron.db import migration
# revision identifiers, used by Alembic.
revision = 'd49ac91b560e'
down_revision = 'dbe29d208ac6'
from alembic import op
from sqlalchemy.engine import reflection
# milestone identifier, used by neutron-db-manage
neutron_milestone = [migration.NEWTON]
def upgrade():

View File

@ -20,11 +20,17 @@ Create Date: 2016-09-07 11:38:35.369938
"""
from alembic import op
from neutron.db import migration
# revision identifiers, used by Alembic.
revision = '7b5ec3caa9a4'
down_revision = '6e6da8296c0e'
from alembic import op
# milestone identifier, used by neutron-db-manage
neutron_milestone = [migration.NEWTON]
def upgrade():