aboutsummaryrefslogtreecommitdiffstats
path: root/keystone-moon/keystone/contrib/moon/migrate_repo/versions/002_moon.py
blob: 14e22fc4702eb3e8c19fbf321753fcd05627ba53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Copyright 2015 Open Platform for NFV Project, Inc. and its contributors
# This software is distributed under the terms and conditions of the 'Apache-2.0'
# license which can be found in the file 'LICENSE' in this package distribution
# or at 'http://www.apache.org/licenses/LICENSE-2.0'.

import sqlalchemy as sql
from keystone.common import sql as k_sql


def upgrade(migrate_engine):
    meta = sql.MetaData()
    meta.bind = migrate_engine

#     region_table = sql.Table(
#         'inter_extension',
#         meta,
#         sql.Column('id', sql.String(64), primary_key=True),
#         sql.Column('requesting_intra_extension_uuid', sql.String(64), nullable=False),
#         sql.Column('requested_intra_extension_uuid', sql.String(64), nullable=False),
#         sql.Column('virtual_entity_uuid', sql.String(64), nullable=False),
#         sql.Column('genre', sql.String(64), nullable=False),
#         sql.Column('description', sql.Text(), nullable=True),
#
#         mysql_engine='InnoDB',
#         mysql_charset='utf8')
#     region_table.create(migrate_engine, checkfirst=True)
#
#
def downgrade(migrate_engine):
    meta = sql.MetaData()
    meta.bind = migrate_engine

#     table = sql.Table('inter_extension', meta, autoload=True)
#     table.drop(migrate_engine, checkfirst=True)