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.

View File

@ -1,5 +1,6 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import sys
from nyaa import app, db
from flask_script import Manager
from flask_migrate import Migrate, MigrateCommand
@ -10,4 +11,12 @@ manager = Manager(app)
manager.add_command("db", MigrateCommand)
if __name__ == "__main__":
# Patch sys.argv to default to 'db'
argv_contents = sys.argv[:]
sys.argv.clear()
sys.argv.append(argv_contents[0])
sys.argv.append('db')
sys.argv.extend(argv_contents[1:])
manager.run()