Open Zed DB branch

Change-Id: I03a2b5ee881864226bbe5ef78e38707213cbbbfe
This commit is contained in:
Rodolfo Alonso Hernandez 2022-03-05 19:27:21 +00:00
parent 020f874033
commit 5a60701f1f
3 changed files with 8 additions and 1 deletions

View File

@ -36,6 +36,7 @@ VICTORIA = 'victoria'
WALLABY = 'wallaby' WALLABY = 'wallaby'
XENA = 'xena' XENA = 'xena'
YOGA = 'yoga' YOGA = 'yoga'
ZED = 'zed'
NEUTRON_MILESTONES = [ NEUTRON_MILESTONES = [
# earlier milestones were not tagged # earlier milestones were not tagged
@ -52,6 +53,7 @@ NEUTRON_MILESTONES = [
VICTORIA, VICTORIA,
WALLABY, WALLABY,
XENA, XENA,
YOGA,
# Do not add the milestone until the end of the release # Do not add the milestone until the end of the release
] ]

View File

@ -18,6 +18,7 @@ import sqlalchemy as sa
from neutron_lib.db import constants from neutron_lib.db import constants
from neutron.db import migration
"""add router ndp proxy table """add router ndp proxy table
@ -31,6 +32,9 @@ Create Date: 2021-12-03 03:57:34.838905
revision = '34cf8b009713' revision = '34cf8b009713'
down_revision = 'cd9ef14ccf87' down_revision = 'cd9ef14ccf87'
# milestone identifier, used by neutron-db-manage
neutron_milestone = [migration.YOGA]
def upgrade(): def upgrade():
op.create_table( op.create_table(

View File

@ -37,7 +37,7 @@ HEADS_FILENAME = 'HEADS'
CONTRACT_HEAD_FILENAME = 'CONTRACT_HEAD' CONTRACT_HEAD_FILENAME = 'CONTRACT_HEAD'
EXPAND_HEAD_FILENAME = 'EXPAND_HEAD' EXPAND_HEAD_FILENAME = 'EXPAND_HEAD'
CURRENT_RELEASE = migration.YOGA CURRENT_RELEASE = migration.ZED
RELEASES = ( RELEASES = (
migration.LIBERTY, migration.LIBERTY,
migration.MITAKA, migration.MITAKA,
@ -53,6 +53,7 @@ RELEASES = (
migration.WALLABY, migration.WALLABY,
migration.XENA, migration.XENA,
migration.YOGA, migration.YOGA,
migration.ZED,
) )
EXPAND_BRANCH = 'expand' EXPAND_BRANCH = 'expand'