Tag the alembic migration revisions for Newton

This allows the database to be upgraded with the command:

  neutron-db-manage upgrade newton

Depends-On: I5b9c02814bdc1945422184a84c49f9e67dcf24a9

Partial-Bug: #1623108

Change-Id: Ifd032836ef9e45ed583386fafc6a265988c75e63
This commit is contained in:
Henry Gessau 2016-09-13 20:49:18 -04:00 committed by Nate Johnston
parent a170413e90
commit bdcfdd7d37
2 changed files with 13 additions and 3 deletions

View File

@ -25,11 +25,15 @@ from alembic import op
import sqlalchemy as sa
from sqlalchemy.engine import reflection
from neutron.db import migration
# revision identifiers, used by Alembic.
revision = 'f83a0b2964d0'
down_revision = '458aa42b14b'
# milestone identifier, used by neutron-db-manage
neutron_milestone = [migration.NEWTON]
_INSPECTOR = None

View File

@ -21,13 +21,19 @@ Create Date: 2016-06-08 19:57:13.848855
"""
from alembic import op
import sqlalchemy as sa
from sqlalchemy.dialects import postgresql
from neutron.db import migration
# revision identifiers, used by Alembic.
revision = 'd6a12e637e28'
down_revision = '4b47ea298795'
from alembic import op
import sqlalchemy as sa
from sqlalchemy.dialects import postgresql
# milestone identifier, used by neutron-db-manage
neutron_milestone = [migration.NEWTON]
def get_enum():