1 # Copyright 2013 OpenStack Foundation
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
7 # http://www.apache.org/licenses/LICENSE-2.0
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
15 import sqlalchemy as sql
18 def upgrade(migrate_engine):
19 # Upgrade operations go here. Don't create your own engine; bind
20 # migrate_engine to your metadata
22 meta.bind = migrate_engine
24 endpoint_filtering_table = sql.Table(
38 endpoint_filtering_table.create(migrate_engine, checkfirst=True)
41 def downgrade(migrate_engine):
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)