Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use app context when creating the tables #627

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -27,14 +27,15 @@

def _init_db_tables(config):
print 'Setting up a Flask app'
setup_flask_app(
app = setup_flask_app(
manager_ip=config['postgresql_host'],
hash_salt=config['hash_salt'],
secret_key=config['secret_key']
)

print 'Creating tables in the DB'
upgrade(directory=config['db_migrate_dir'])
with app.app_context():
print 'Creating tables in the DB'
upgrade(directory=config['db_migrate_dir'])


def _add_default_user_and_tenant(config, amqp_manager):
Expand Down