cdd683a0c8
Implements blueprint migrations-for-service-plugins Fixes bug 1209151 Change-Id: If7fc7a4488352e9b65b6973d8ea631e0d9ed8b68
85 lines
2.8 KiB
Python
85 lines
2.8 KiB
Python
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
#
|
|
# Copyright 2013 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.
|
|
#
|
|
|
|
"""ml2_initial
|
|
|
|
Revision ID: 5ac71e65402c
|
|
Revises: 128e042a2b68
|
|
Create Date: 2013-05-27 16:08:40.853821
|
|
|
|
"""
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '5ac71e65402c'
|
|
down_revision = '128e042a2b68'
|
|
|
|
# Change to ['*'] if this migration applies to all plugins
|
|
|
|
migration_for_plugins = [
|
|
'neutron.plugins.ml2.plugin.Ml2Plugin'
|
|
]
|
|
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
from neutron.db import migration
|
|
|
|
|
|
def upgrade(active_plugins=None, options=None):
|
|
if not migration.should_run(active_plugins, migration_for_plugins):
|
|
return
|
|
|
|
### commands auto generated by Alembic - please adjust! ###
|
|
op.create_table(
|
|
'ml2_network_segments',
|
|
sa.Column('id', sa.String(length=36), nullable=False),
|
|
sa.Column('network_id', sa.String(length=36), nullable=False),
|
|
sa.Column('network_type', sa.String(length=32), nullable=False),
|
|
sa.Column('physical_network', sa.String(length=64), nullable=True),
|
|
sa.Column('segmentation_id', sa.Integer(), nullable=True),
|
|
sa.ForeignKeyConstraint(['network_id'], ['networks.id'],
|
|
ondelete='CASCADE'),
|
|
sa.PrimaryKeyConstraint('id')
|
|
)
|
|
op.create_table(
|
|
'ml2_vlan_allocations',
|
|
sa.Column('physical_network', sa.String(length=64), nullable=False),
|
|
sa.Column('vlan_id', sa.Integer(), autoincrement=False,
|
|
nullable=False),
|
|
sa.Column('allocated', sa.Boolean(), autoincrement=False,
|
|
nullable=False),
|
|
sa.PrimaryKeyConstraint('physical_network', 'vlan_id')
|
|
)
|
|
op.create_table(
|
|
'ml2_flat_allocations',
|
|
sa.Column('physical_network', sa.String(length=64), nullable=False),
|
|
sa.PrimaryKeyConstraint('physical_network')
|
|
)
|
|
### end Alembic commands ###
|
|
|
|
|
|
def downgrade(active_plugins=None, options=None):
|
|
if not migration.should_run(active_plugins, migration_for_plugins):
|
|
return
|
|
|
|
### commands auto generated by Alembic - please adjust! ###
|
|
op.drop_table('ml2_network_segments')
|
|
op.drop_table('ml2_flat_allocations')
|
|
op.drop_table('ml2_vlan_allocations')
|
|
### end Alembic commands ###
|