~ubuntu-branches/ubuntu/vivid/neutron/vivid-updates

« back to all changes in this revision

Viewing changes to neutron/db/migration/alembic_migrations/versions/341ee8a4ccb5_sync_with_cisco_repo.py

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2015-03-30 11:17:19 UTC
  • mfrom: (1.1.21)
  • Revision ID: package-import@ubuntu.com-20150330111719-h0gx7233p4jkkgfh
Tags: 1:2015.1~b3-0ubuntu1
* New upstream milestone release:
  - d/control: Align version requirements with upstream.
  - d/control: Add new dependency on oslo-log.
  - d/p/*: Rebase.
  - d/control,d/neutron-plugin-hyperv*: Dropped, decomposed into
    separate project upstream.
  - d/control,d/neutron-plugin-openflow*: Dropped, decomposed into
    separate project upstream.
  - d/neutron-common.install: Add neutron-rootwrap-daemon and 
    neutron-keepalived-state-change binaries.
  - d/rules: Ignore neutron-hyperv-agent when installing; only for Windows.
  - d/neutron-plugin-cisco.install: Drop neutron-cisco-cfg-agent as
    decomposed into separate project upstream.
  - d/neutron-plugin-vmware.install: Drop neutron-check-nsx-config and
    neutron-nsx-manage as decomposed into separate project upstream.
  - d/control: Add dependency on python-neutron-fwaas to neutron-l3-agent.
* d/pydist-overrides: Add overrides for oslo packages.
* d/control: Fixup type in package description (LP: #1263539).
* d/p/fixup-driver-test-execution.patch: Cherry pick fix from upstream VCS
  to support unit test exection in out-of-tree vendor drivers.
* d/neutron-common.postinst: Allow general access to /etc/neutron but limit
  access to root/neutron to /etc/neutron/neutron.conf to support execution
  of unit tests in decomposed vendor drivers.
* d/control: Add dependency on python-neutron-fwaas to neutron-l3-agent
  package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright 2015 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
"""sync with cisco repo
 
17
 
 
18
Revision ID: 341ee8a4ccb5
 
19
Revises: f15b1fb526dd
 
20
Create Date: 2015-03-10 17:19:57.047080
 
21
 
 
22
"""
 
23
 
 
24
# revision identifiers, used by Alembic.
 
25
revision = '341ee8a4ccb5'
 
26
down_revision = 'f15b1fb526dd'
 
27
 
 
28
from alembic import op
 
29
import sqlalchemy as sa
 
30
 
 
31
 
 
32
def upgrade():
 
33
    op.create_table(
 
34
        'ml2_nexus_vxlan_allocations',
 
35
        sa.Column('vxlan_vni', sa.Integer(), nullable=False,
 
36
                  autoincrement=False),
 
37
        sa.Column('allocated', sa.Boolean(), nullable=False,
 
38
                  server_default=sa.sql.false()),
 
39
        sa.PrimaryKeyConstraint('vxlan_vni')
 
40
    )
 
41
 
 
42
    op.create_table(
 
43
        'ml2_nexus_vxlan_mcast_groups',
 
44
        sa.Column('id', sa.String(length=36), nullable=False),
 
45
        sa.Column('mcast_group', sa.String(length=64), nullable=False),
 
46
        sa.Column('associated_vni', sa.Integer(), nullable=False),
 
47
        sa.PrimaryKeyConstraint('id'),
 
48
        sa.ForeignKeyConstraint(['associated_vni'],
 
49
                                ['ml2_nexus_vxlan_allocations.vxlan_vni'],
 
50
                                ondelete='CASCADE')
 
51
    )
 
52
 
 
53
    op.create_table(
 
54
        'cisco_ml2_nexus_nve',
 
55
        sa.Column('vni', sa.Integer(), nullable=False),
 
56
        sa.Column('switch_ip', sa.String(length=255), nullable=True),
 
57
        sa.Column('device_id', sa.String(length=255), nullable=True),
 
58
        sa.Column('mcast_group', sa.String(length=255), nullable=True),
 
59
        sa.PrimaryKeyConstraint('vni', 'switch_ip', 'device_id'))
 
60
 
 
61
    op.add_column(
 
62
        'cisco_ml2_nexusport_bindings',
 
63
        sa.Column('vni', sa.Integer(), nullable=True))
 
64
 
 
65
    op.add_column('cisco_ml2_nexusport_bindings', sa.Column(
 
66
        'is_provider_vlan', sa.Boolean(), nullable=False,
 
67
        server_default=sa.sql.false()))
 
68
 
 
69
 
 
70
def downgrade():
 
71
    op.drop_table('ml2_nexus_vxlan_mcast_groups')
 
72
    op.drop_table('ml2_nexus_vxlan_allocations')
 
73
    op.drop_table('cisco_ml2_nexus_nve')
 
74
 
 
75
    op.drop_column('cisco_ml2_nexusport_bindings', 'vni')
 
76
    op.drop_column('cisco_ml2_nexusport_bindings', 'is_provider_vlan')