090e7f47191a404c19c6979856b7d5c1f2d67c27
[moon.git] /
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 import sqlalchemy as sql
16
17
18 def upgrade(migrate_engine):
19     # Upgrade operations go here. Don't create your own engine; bind
20     # migrate_engine to your metadata
21     meta = sql.MetaData()
22     meta.bind = migrate_engine
23
24     endpoint_filtering_table = sql.Table(
25         'project_endpoint',
26         meta,
27         sql.Column(
28             'endpoint_id',
29             sql.String(64),
30             primary_key=True,
31             nullable=False),
32         sql.Column(
33             'project_id',
34             sql.String(64),
35             primary_key=True,
36             nullable=False))
37
38     endpoint_filtering_table.create(migrate_engine, checkfirst=True)
39
40
41 def downgrade(migrate_engine):
42     meta = sql.MetaData()
43     meta.bind = migrate_engine
44     # Operations to reverse the above upgrade go here.
45     for table_name in ['project_endpoint']:
46         table = sql.Table(table_name, meta, autoload=True)
47         table.drop()