Beispiel #1
0
def db_downgrade(c, dir=DEFAULT_MIGRATION_DIR):
    """
    Downgrade database to a specific revision.
    """
    with app.app_context():
        migrate.downgrade(directory=dir)
Beispiel #2
0
def db_stamp(c, dir=DEFAULT_MIGRATION_DIR):
    """
    Set database revision to a specific value.
    """
    with app.app_context(directory=dir):
        pass
Beispiel #3
0
def db_migrate(c, dir=DEFAULT_MIGRATION_DIR):
    """
    Generate new autofilled migration.
    """
    with app.app_context():
        migrate.migrate(directory=dir)
Beispiel #4
0
def db_upgrade(c, dir=DEFAULT_MIGRATION_DIR):
    """
    Run any migrations needed make database current.
    """
    with app.app_context():
        migrate.upgrade(directory=dir)
Beispiel #5
0
def db_migrate(c, dir=DEFAULT_MIGRATION_DIR):
    """
    Generate new autofilled migration.
    """
    with app.app_context():
        migrate.migrate(directory=dir)
Beispiel #6
0
def db_current(c, dir=DEFAULT_MIGRATION_DIR):
    with app.app_context():
        migrate.current(directory=dir)
Beispiel #7
0
def db_history(c, dir=DEFAULT_MIGRATION_DIR):
    """
    List migration history.
    """
    with app.app_context():
        migrate.history(directory=dir)
Beispiel #8
0
def db_current(c, dir=DEFAULT_MIGRATION_DIR):
    """
    Show current migration revision.
    """
    with app.app_context():
        migrate.current(directory=dir)
Beispiel #9
0
def db_downgrade(c, dir=DEFAULT_MIGRATION_DIR):
    """
    Downgrade database to a specific revision.
    """
    with app.app_context():
        migrate.downgrade(directory=dir)
Beispiel #10
0
def db_stamp(c, dir=DEFAULT_MIGRATION_DIR):
    """
    Set database revision to a specific value.
    """
    with app.app_context(directory=dir):
        pass
Beispiel #11
0
def db_stamp(c, dir=DEFAULT_MIGRATION_DIR):
    with app.app_context(directory=dir):
        pass
Beispiel #12
0
def db_downgrade(c, dir=DEFAULT_MIGRATION_DIR):
    with app.app_context():
        migrate.downgrade(directory=dir)
Beispiel #13
0
def db_revision(c, dir=DEFAULT_MIGRATION_DIR):
    with app.app_context():
        migrate.revision(directory=dir)
Beispiel #14
0
def db_history(c, dir=DEFAULT_MIGRATION_DIR):
    """
    List migration history.
    """
    with app.app_context():
        migrate.history(directory=dir)
Beispiel #15
0
def db_init_migrations(c, dir=None):
    """
    Update the project to support migrations.
    """
    with app.app_context():
        migrate.init(dir)
Beispiel #16
0
def db_init_migrations(c, dir=None):
    """
    Update the project to support migrations.
    """
    with app.app_context():
        migrate.init(dir)
Beispiel #17
0
def db_current(c, dir=DEFAULT_MIGRATION_DIR):
    """
    Show current migration revision.
    """
    with app.app_context():
        migrate.current(directory=dir)
Beispiel #18
0
def db_revision(c, dir=DEFAULT_MIGRATION_DIR):
    """
    Generate new empty revision script.
    """
    with app.app_context():
        migrate.revision(directory=dir)
Beispiel #19
0
def db_revision(c, dir=DEFAULT_MIGRATION_DIR):
    """
    Generate new empty revision script.
    """
    with app.app_context():
        migrate.revision(directory=dir)
Beispiel #20
0
def db_upgrade(c, dir=DEFAULT_MIGRATION_DIR):
    """
    Run any migrations needed make database current.
    """
    with app.app_context():
        migrate.upgrade(directory=dir)
Beispiel #21
0
def db_init_migrations(c, dir=None):
    with app.app_context():
        migrate.init(dir)