Added a db abstraction for quota sync methods. Implementation currently is based on sqlalchemy. Added database migration enablement. Added the db unit tests. Further enhancement to the db API will be added in a separate comment. Change-Id: I56284919ad54d2359fa03d476cc89a4acdc68122
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
# Copyright (c) 2015 Ericsson AB.
 | 
						|
# All Rights Reserved.
 | 
						|
#
 | 
						|
# 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.
 | 
						|
 | 
						|
import sqlalchemy
 | 
						|
 | 
						|
 | 
						|
def upgrade(migrate_engine):
 | 
						|
    meta = sqlalchemy.MetaData()
 | 
						|
    meta.bind = migrate_engine
 | 
						|
 | 
						|
    quotas = sqlalchemy.Table(
 | 
						|
        'quotas', meta,
 | 
						|
        sqlalchemy.Column('id', sqlalchemy.Integer,
 | 
						|
                          primary_key=True, nullable=False),
 | 
						|
        sqlalchemy.Column('project_id', sqlalchemy.String(36)),
 | 
						|
        sqlalchemy.Column('resource', sqlalchemy.String(255), nullable=False),
 | 
						|
        sqlalchemy.Column('hard_limit', sqlalchemy.Integer, nullable=False),
 | 
						|
        sqlalchemy.Column('created_at', sqlalchemy.DateTime),
 | 
						|
        sqlalchemy.Column('updated_at', sqlalchemy.DateTime),
 | 
						|
        sqlalchemy.Column('deleted_at', sqlalchemy.DateTime),
 | 
						|
        sqlalchemy.Column('deleted', sqlalchemy.Integer),
 | 
						|
        mysql_engine='InnoDB',
 | 
						|
        mysql_charset='utf8'
 | 
						|
    )
 | 
						|
 | 
						|
    tables = (
 | 
						|
        quotas,
 | 
						|
    )
 | 
						|
 | 
						|
    for index, table in enumerate(tables):
 | 
						|
        try:
 | 
						|
            table.create()
 | 
						|
        except Exception:
 | 
						|
            # If an error occurs, drop all tables created so far to return
 | 
						|
            # to the previously existing state.
 | 
						|
            meta.drop_all(tables=tables[:index])
 | 
						|
            raise
 | 
						|
 | 
						|
 | 
						|
def downgrade(migrate_engine):
 | 
						|
    raise NotImplementedError('Database downgrade not supported - '
 | 
						|
                              'would drop all tables')
 |