Open Victoria DB branch

Change-Id: I27d7f393d7ef9383ed3cb0e4338cbb6d767721d9
This commit is contained in:
Rodolfo Alonso Hernandez 2020-04-28 09:00:42 +00:00
parent 2a6ab2e9c0
commit 518b623d7e
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'