2014-04-09 23:11:33 +00:00
|
|
|
from __future__ import with_statement
|
2014-09-22 18:36:52 +00:00
|
|
|
|
|
|
|
import os
|
|
|
|
|
2014-04-09 23:11:33 +00:00
|
|
|
from alembic import context
|
|
|
|
from sqlalchemy import engine_from_config, pool
|
|
|
|
from logging.config import fileConfig
|
2014-05-13 16:17:26 +00:00
|
|
|
from urllib import unquote
|
2014-05-13 19:20:17 +00:00
|
|
|
from peewee import SqliteDatabase
|
2014-04-09 23:11:33 +00:00
|
|
|
|
2014-05-13 19:20:17 +00:00
|
|
|
from data.database import all_models, db
|
2014-04-09 23:11:33 +00:00
|
|
|
from app import app
|
|
|
|
from data.model.sqlalchemybridge import gen_sqlalchemy_metadata
|
2014-09-08 20:42:43 +00:00
|
|
|
from util.morecollections import AttrDict
|
2014-04-09 23:11:33 +00:00
|
|
|
|
|
|
|
# this is the Alembic Config object, which provides
|
|
|
|
# access to the values within the .ini file in use.
|
2014-09-22 18:36:52 +00:00
|
|
|
db_uri = unquote(app.config['DB_URI'])
|
|
|
|
if 'GENMIGRATE' in os.environ:
|
2014-10-07 19:29:56 +00:00
|
|
|
docker_host = os.environ.get('DOCKER_HOST')
|
|
|
|
docker_host_ip = docker_host[len('tcp://'):].split(':')[0]
|
|
|
|
if os.environ.get('GENMIGRATE') == 'mysql':
|
|
|
|
db_uri = 'mysql+pymysql://root:password@%s/genschema' % (docker_host_ip)
|
|
|
|
else:
|
|
|
|
db_uri = 'postgresql://postgres@%s/genschema' % (docker_host_ip)
|
2014-09-22 18:36:52 +00:00
|
|
|
|
2014-04-09 23:11:33 +00:00
|
|
|
config = context.config
|
2014-09-22 18:36:52 +00:00
|
|
|
config.set_main_option('sqlalchemy.url', db_uri)
|
2014-04-09 23:11:33 +00:00
|
|
|
|
|
|
|
# Interpret the config file for Python logging.
|
|
|
|
# This line sets up loggers basically.
|
|
|
|
fileConfig(config.config_file_name)
|
|
|
|
|
|
|
|
# add your model's MetaData object here
|
|
|
|
# for 'autogenerate' support
|
|
|
|
# from myapp import mymodel
|
|
|
|
# target_metadata = mymodel.Base.metadata
|
|
|
|
target_metadata = gen_sqlalchemy_metadata(all_models)
|
2014-09-05 00:58:29 +00:00
|
|
|
tables = AttrDict(target_metadata.tables)
|
2014-04-09 23:11:33 +00:00
|
|
|
|
|
|
|
# other values from the config, defined by the needs of env.py,
|
|
|
|
# can be acquired:
|
|
|
|
# my_important_option = config.get_main_option("my_important_option")
|
|
|
|
# ... etc.
|
|
|
|
|
|
|
|
def run_migrations_offline():
|
|
|
|
"""Run migrations in 'offline' mode.
|
|
|
|
|
|
|
|
This configures the context with just a URL
|
|
|
|
and not an Engine, though an Engine is acceptable
|
|
|
|
here as well. By skipping the Engine creation
|
|
|
|
we don't even need a DBAPI to be available.
|
|
|
|
|
|
|
|
Calls to context.execute() here emit the given string to the
|
|
|
|
script output.
|
|
|
|
|
|
|
|
"""
|
2014-05-13 16:17:26 +00:00
|
|
|
url = unquote(app.config['DB_URI'])
|
2014-05-13 19:20:17 +00:00
|
|
|
context.configure(url=url, target_metadata=target_metadata, transactional_ddl=True)
|
2014-04-09 23:11:33 +00:00
|
|
|
|
|
|
|
with context.begin_transaction():
|
2014-09-05 00:58:29 +00:00
|
|
|
context.run_migrations(tables=tables)
|
2014-04-09 23:11:33 +00:00
|
|
|
|
|
|
|
def run_migrations_online():
|
|
|
|
"""Run migrations in 'online' mode.
|
|
|
|
|
|
|
|
In this scenario we need to create an Engine
|
|
|
|
and associate a connection with the context.
|
|
|
|
|
|
|
|
"""
|
2014-05-13 19:20:17 +00:00
|
|
|
|
2014-09-22 18:36:52 +00:00
|
|
|
if isinstance(db.obj, SqliteDatabase) and not 'GENMIGRATE' in os.environ:
|
2014-05-13 19:20:17 +00:00
|
|
|
print ('Skipping Sqlite migration!')
|
|
|
|
return
|
|
|
|
|
2014-04-09 23:11:33 +00:00
|
|
|
engine = engine_from_config(
|
|
|
|
config.get_section(config.config_ini_section),
|
|
|
|
prefix='sqlalchemy.',
|
|
|
|
poolclass=pool.NullPool)
|
|
|
|
|
|
|
|
connection = engine.connect()
|
|
|
|
context.configure(
|
|
|
|
connection=connection,
|
|
|
|
target_metadata=target_metadata
|
|
|
|
)
|
|
|
|
|
|
|
|
try:
|
|
|
|
with context.begin_transaction():
|
2014-09-05 00:58:29 +00:00
|
|
|
context.run_migrations(tables=tables)
|
2014-04-09 23:11:33 +00:00
|
|
|
finally:
|
|
|
|
connection.close()
|
|
|
|
|
|
|
|
if context.is_offline_mode():
|
|
|
|
run_migrations_offline()
|
|
|
|
else:
|
|
|
|
run_migrations_online()
|
|
|
|
|