vmware-nsx/vmware_nsx/db/migration/alembic_migrations/versions/newton/expand/3e4dccfe6fb4_nsx_security_group_logging.py
Roey Chen 1ac25e8896 NsxV3: Fine grained logging for security-groups
Also migrates security group logging for NSXv to new model

Change-Id: I0d6a90e0d8531156e06817cba431c72db0c81bde
2016-03-29 18:27:36 +00:00

41 lines
1.3 KiB
Python

# Copyright 2016 VMware, Inc.
#
# 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.
"""NSXv add dns search domain to subnets
Revision ID: 3e4dccfe6fb4
Revises: 2c87aedb206f
Create Date: 2016-03-20 07:28:35.369938
"""
# revision identifiers, used by Alembic.
revision = '3e4dccfe6fb4'
down_revision = '2c87aedb206f'
from alembic import op
import sqlalchemy as sa
def upgrade():
op.create_table(
'nsx_extended_security_group_properties',
sa.Column('security_group_id', sa.String(36), nullable=False),
sa.Column('logging', sa.Boolean(), nullable=False),
sa.ForeignKeyConstraint(['security_group_id'],
['securitygroups.id'],
ondelete='CASCADE'),
sa.PrimaryKeyConstraint('security_group_id')
)