Patch db_migrate.py to always use the 'db' command

This means you can (have to) use the Flask-Migrate commands directly:
"./db_migrate.py stamp head" etc instead of "./db_migrate.py db stamp head"
This commit is contained in:
TheAMM
2017-05-27 23:19:38 +03:00
parent 2d04cf3525
commit 79dae38f37
2 changed files with 10 additions and 1 deletions

View File

@@ -55,6 +55,6 @@ if __name__ == '__main__':
if database_empty:
print('Remember to run the following to mark the database up-to-date for Alembic:')
print('./db_migrate.py db stamp head')
print('./db_migrate.py stamp head')
# Technically we should be able to do this here, but when you have
# Flask-Migrate and Flask-SQA and everything... I didn't get it working.