~niedbalski/ubuntu/vivid/neutron/fixes-1447803

« back to all changes in this revision

Viewing changes to neutron/db/migration/alembic_migrations/versions/51b4de912379_cisco_nexus_ml2_mech.py

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2014-10-03 18:45:23 UTC
  • mfrom: (1.1.15)
  • Revision ID: package-import@ubuntu.com-20141003184523-4mt6dy1q3j8n30c9
Tags: 1:2014.2~rc1-0ubuntu1
* New upstream release candidate:
  - d/p/*: Refreshed.
  - d/control: Add python-requests-mock to BD's.
  - d/control: Align versioned requirements with upstream.
* Transition linuxbridge and openvswitch plugin users to modular
  layer 2 plugin (LP: #1323729):
  - d/control: Mark removed plugin packages as transitional, depend
    on neutron-plugin-ml2, mark oldlibs/extra.
  - d/neutron-plugin-{linuxbridge,openvswitch}.install: Drop.
  - d/control: Depend on neutron-plugin-ml2 for linuxbridge
    agent package.
  - d/neutron-plugin-linuxbridge-agent.upstart: Use ml2 plugin
    configuration files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright 2013 OpenStack Foundation
2
 
#
3
 
#    Licensed under the Apache License, Version 2.0 (the "License"); you may
4
 
#    not use this file except in compliance with the License. You may obtain
5
 
#    a copy of the License at
6
 
#
7
 
#         http://www.apache.org/licenses/LICENSE-2.0
8
 
#
9
 
#    Unless required by applicable law or agreed to in writing, software
10
 
#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11
 
#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12
 
#    License for the specific language governing permissions and limitations
13
 
#    under the License.
14
 
#
15
 
 
16
 
"""Cisco Nexus ML2 mechanism driver
17
 
 
18
 
Revision ID: 51b4de912379
19
 
Revises: 66a59a7f516
20
 
Create Date: 2013-08-20 15:31:40.553634
21
 
 
22
 
"""
23
 
 
24
 
# revision identifiers, used by Alembic.
25
 
revision = '51b4de912379'
26
 
down_revision = '66a59a7f516'
27
 
 
28
 
migration_for_plugins = [
29
 
    'neutron.plugins.ml2.plugin.Ml2Plugin'
30
 
]
31
 
 
32
 
from alembic import op
33
 
import sqlalchemy as sa
34
 
 
35
 
from neutron.db import migration
36
 
 
37
 
 
38
 
def upgrade(active_plugins=None, options=None):
39
 
    if not migration.should_run(active_plugins, migration_for_plugins):
40
 
        return
41
 
 
42
 
    op.create_table(
43
 
        'cisco_ml2_nexusport_bindings',
44
 
        sa.Column('binding_id', sa.Integer(), nullable=False),
45
 
        sa.Column('port_id', sa.String(length=255), nullable=True),
46
 
        sa.Column('vlan_id', sa.Integer(), autoincrement=False,
47
 
                  nullable=False),
48
 
        sa.Column('switch_ip', sa.String(length=255), nullable=True),
49
 
        sa.Column('instance_id', sa.String(length=255), nullable=True),
50
 
        sa.PrimaryKeyConstraint('binding_id'),
51
 
    )
52
 
    op.create_table(
53
 
        'cisco_ml2_credentials',
54
 
        sa.Column('credential_id', sa.String(length=255), nullable=True),
55
 
        sa.Column('tenant_id', sa.String(length=255), nullable=False),
56
 
        sa.Column('credential_name', sa.String(length=255), nullable=False),
57
 
        sa.Column('user_name', sa.String(length=255), nullable=True),
58
 
        sa.Column('password', sa.String(length=255), nullable=True),
59
 
        sa.PrimaryKeyConstraint('tenant_id', 'credential_name'),
60
 
    )
61
 
 
62
 
 
63
 
def downgrade(active_plugins=None, options=None):
64
 
    if not migration.should_run(active_plugins, migration_for_plugins):
65
 
        return
66
 
 
67
 
    op.drop_table('cisco_ml2_credentials')
68
 
    op.drop_table('cisco_ml2_nexusport_bindings')