Merge "Open the 2024.2 (Dalmatian) DB branch"

This commit is contained in:
Zuul
2024-03-21 15:53:43 +00:00
committed by Gerrit Code Review
3 changed files with 8 additions and 1 deletions

View File

@@ -40,6 +40,7 @@ ZED = 'zed'
RELEASE_2023_1 = '2023.1'
RELEASE_2023_2 = '2023.2'
RELEASE_2024_1 = '2024.1'
RELEASE_2024_2 = '2024.2'
NEUTRON_MILESTONES = [
# earlier milestones were not tagged

View File

@@ -16,6 +16,8 @@
from alembic import op
import sqlalchemy as sa
from neutron.db import migration
"""Add port hardware offload extension type
@@ -29,6 +31,9 @@ Create Date: 2023-05-09 23:52:40.677006
revision = '0e6eff810791'
down_revision = '054e34dbe6b4'
# milestone identifier, used by neutron-db-manage
neutron_milestone = [migration.RELEASE_2024_1]
def upgrade():
op.create_table('porthardwareoffloadtype',

View File

@@ -38,7 +38,7 @@ HEADS_FILENAME = 'HEADS'
CONTRACT_HEAD_FILENAME = 'CONTRACT_HEAD'
EXPAND_HEAD_FILENAME = 'EXPAND_HEAD'
CURRENT_RELEASE = migration.RELEASE_2024_1
CURRENT_RELEASE = migration.RELEASE_2024_2
RELEASES = (
migration.LIBERTY,
migration.MITAKA,
@@ -58,6 +58,7 @@ RELEASES = (
migration.RELEASE_2023_1,
migration.RELEASE_2023_2,
migration.RELEASE_2024_1,
migration.RELEASE_2024_2,
)
EXPAND_BRANCH = 'expand'