Merge "HA for DVR - schema migration and change"

This commit is contained in:
Jenkins 2015-01-07 02:48:09 +00:00 committed by Gerrit Code Review
commit 5b2d39853f
3 changed files with 66 additions and 2 deletions

View File

@ -44,7 +44,7 @@ class CentralizedSnatL3AgentBinding(model_base.BASEV2):
primary_key=True)
l3_agent_id = sa.Column(sa.String(36),
sa.ForeignKey("agents.id", ondelete='CASCADE'),
nullable=False)
primary_key=True)
host_id = sa.Column(sa.String(255))
csnat_gw_port_id = sa.Column(sa.String(36), sa.ForeignKey('ports.id'))

View File

@ -0,0 +1,64 @@
# Copyright 2014 OpenStack Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
"""L3 DVR SNAT mapping
Revision ID: 41662e32bce2
Revises: 4dbe243cd84d
Create Date: 2014-12-22 16:48:56.922833
"""
# revision identifiers, used by Alembic.
revision = '41662e32bce2'
down_revision = '4dbe243cd84d'
from alembic import op
from sqlalchemy.engine import reflection
from neutron.db import migration
TABLE_NAME = 'csnat_l3_agent_bindings'
def upgrade():
inspector = reflection.Inspector.from_engine(op.get_bind())
prev_pk_const = inspector.get_pk_constraint(TABLE_NAME)
prev_pk_name = prev_pk_const.get('name')
with migration.remove_fks_from_table(TABLE_NAME):
op.drop_constraint(name=prev_pk_name,
table_name=TABLE_NAME,
type_='primary')
op.create_primary_key(name=None,
table_name=TABLE_NAME,
cols=['router_id', 'l3_agent_id'])
def downgrade():
inspector = reflection.Inspector.from_engine(op.get_bind())
prev_pk_const = inspector.get_pk_constraint(TABLE_NAME)
prev_pk_name = prev_pk_const.get('name')
with migration.remove_fks_from_table(TABLE_NAME):
op.drop_constraint(name=prev_pk_name,
table_name=TABLE_NAME,
type_='primary')
op.create_primary_key(name=None,
table_name=TABLE_NAME,
cols=['router_id'])

View File

@ -1 +1 @@
4dbe243cd84d
41662e32bce2