Tag the alembic migration revisions for Ocata

Change-Id: I8bd786160581cb8b6dc66b2612869cd96201fb84
This commit is contained in:
YAMAMOTO Takashi 2017-04-18 19:10:44 +09:00
parent d13c5298b7
commit ebc5be7e2b
2 changed files with 7 additions and 3 deletions

View File

@ -32,7 +32,7 @@ revision = 'b6a2519ab7dc'
down_revision = '2cb4ee992b41'
# milestone identifier, used by neutron-db-manage
neutron_milestone = [migration.NEWTON]
neutron_milestone = [migration.NEWTON, migration.OCATA]
_INSPECTOR = None

View File

@ -21,12 +21,16 @@ Create Date: 2016-11-04 18:00:49.219140
"""
from neutron.db import migration
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision = '38893903cbde'
down_revision = '52783a36bd67'
from neutron.db import migration
import sqlalchemy as sa
# milestone identifier, used by neutron-db-manage
neutron_milestone = [migration.OCATA]
new_auth = sa.Enum('sha1', 'sha256', 'sha384', 'sha512',
name='vpn_auth_algorithms')