Merge "Open Xena DB branch"

This commit is contained in:
Zuul 2021-04-04 11:13:46 +00:00 committed by Gerrit Code Review
commit 141469d328
3 changed files with 8 additions and 1 deletions

View File

@ -35,6 +35,7 @@ TRAIN = 'train'
USSURI = 'ussuri' USSURI = 'ussuri'
VICTORIA = 'victoria' VICTORIA = 'victoria'
WALLABY = 'wallaby' WALLABY = 'wallaby'
XENA = 'xena'
NEUTRON_MILESTONES = [ NEUTRON_MILESTONES = [
# earlier milestones were not tagged # earlier milestones were not tagged
@ -49,6 +50,7 @@ NEUTRON_MILESTONES = [
TRAIN, TRAIN,
USSURI, USSURI,
VICTORIA, VICTORIA,
WALLABY,
# Do not add the milestone until the end of the release # Do not add the milestone until the end of the release
] ]

View File

@ -14,6 +14,7 @@
from alembic import op from alembic import op
import sqlalchemy as sa import sqlalchemy as sa
from neutron.db import migration
"""add_rbac_support_for_address_group """add_rbac_support_for_address_group
@ -27,6 +28,9 @@ Create Date: 2021-01-22 11:24:07.435031
revision = '6135a7bd4425' revision = '6135a7bd4425'
down_revision = '1e0744e4ffea' down_revision = '1e0744e4ffea'
# milestone identifier, used by neutron-db-manage
neutron_milestone = [migration.WALLABY]
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.WALLABY CURRENT_RELEASE = migration.XENA
RELEASES = ( RELEASES = (
migration.LIBERTY, migration.LIBERTY,
migration.MITAKA, migration.MITAKA,
@ -51,6 +51,7 @@ RELEASES = (
migration.USSURI, migration.USSURI,
migration.VICTORIA, migration.VICTORIA,
migration.WALLABY, migration.WALLABY,
migration.XENA,
) )
EXPAND_BRANCH = 'expand' EXPAND_BRANCH = 'expand'