Merge "Open Victoria DB branch"

This commit is contained in:
Zuul 2020-05-12 17:05:29 +00:00 committed by Gerrit Code Review
commit 08e9ec1b56
3 changed files with 9 additions and 1 deletions

View File

@ -33,6 +33,7 @@ ROCKY = 'rocky'
STEIN = 'stein'
TRAIN = 'train'
USSURI = 'ussuri'
VICTORIA = 'victoria'
NEUTRON_MILESTONES = [
# earlier milestones were not tagged
@ -45,6 +46,7 @@ NEUTRON_MILESTONES = [
ROCKY,
STEIN,
TRAIN,
USSURI,
# Do not add the milestone until the end of the release
]

View File

@ -17,6 +17,8 @@ from alembic import op
import sqlalchemy as sa
from sqlalchemy.engine import reflection
from neutron.db import migration
"""add in_use to subnet
@ -30,6 +32,9 @@ Create Date: 2020-03-13 17:15:38.462751
revision = 'd8bdf05313f4'
down_revision = 'e88badaa9591'
# milestone identifier, used by neutron-db-manage
neutron_milestone = [migration.USSURI]
TABLE = 'subnets'
COLUMN_IN_USE = 'in_use'

View File

@ -38,7 +38,7 @@ HEADS_FILENAME = 'HEADS'
CONTRACT_HEAD_FILENAME = 'CONTRACT_HEAD'
EXPAND_HEAD_FILENAME = 'EXPAND_HEAD'
CURRENT_RELEASE = migration.USSURI
CURRENT_RELEASE = migration.VICTORIA
RELEASES = (
migration.LIBERTY,
migration.MITAKA,
@ -50,6 +50,7 @@ RELEASES = (
migration.STEIN,
migration.TRAIN,
migration.USSURI,
migration.VICTORIA,
)
EXPAND_BRANCH = 'expand'