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

Closes-Bug: #1623108

Change-Id: I91931c958e33c57515818e7f2d099f02783d6102
This commit is contained in:
Henry Gessau 2016-09-13 21:23:20 -04:00
parent 44f6465a45
commit a473bde24c
2 changed files with 17 additions and 5 deletions

View File

@ -20,13 +20,19 @@ Create Date: 2016-07-13 02:40:51.683659
"""
from alembic import op
import sqlalchemy as sa
from sqlalchemy.engine import reflection
from neutron.db import migration
# revision identifiers, used by Alembic.
revision = 'b6a2519ab7dc'
down_revision = '2cb4ee992b41'
from alembic import op
import sqlalchemy as sa
from sqlalchemy.engine import reflection
# milestone identifier, used by neutron-db-manage
neutron_milestone = [migration.NEWTON]
_INSPECTOR = None

View File

@ -21,12 +21,18 @@ Create Date: 2016-04-26 21:40:40.244196
"""
from alembic import op
import sqlalchemy as sa
from neutron.db import migration
# revision identifiers, used by Alembic.
revision = '52783a36bd67'
down_revision = 'fe637dc3f042'
from alembic import op
import sqlalchemy as sa
# milestone identifier, used by neutron-db-manage
neutron_milestone = [migration.NEWTON]
def upgrade():