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:
parent
cdf7ab939c
commit
6fbf2d1031
@ -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():
|
||||
|
@ -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():
|
||||
|
Loading…
Reference in New Issue
Block a user