Ejemplo n.º 1
0
def db_downgrade(c, dir=DEFAULT_MIGRATION_DIR):
    """
    Downgrade database to a specific revision.
    """
    with app.app_context():
        migrate.downgrade(directory=dir)
Ejemplo n.º 2
0
def db_stamp(c, dir=DEFAULT_MIGRATION_DIR):
    """
    Set database revision to a specific value.
    """
    with app.app_context(directory=dir):
        pass
Ejemplo n.º 3
0
def db_migrate(c, dir=DEFAULT_MIGRATION_DIR):
    """
    Generate new autofilled migration.
    """
    with app.app_context():
        migrate.migrate(directory=dir)
Ejemplo n.º 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)
Ejemplo n.º 5
0
def db_migrate(c, dir=DEFAULT_MIGRATION_DIR):
    """
    Generate new autofilled migration.
    """
    with app.app_context():
        migrate.migrate(directory=dir)
Ejemplo n.º 6
0
def db_current(c, dir=DEFAULT_MIGRATION_DIR):
    with app.app_context():
        migrate.current(directory=dir)
Ejemplo n.º 7
0
def db_history(c, dir=DEFAULT_MIGRATION_DIR):
    """
    List migration history.
    """
    with app.app_context():
        migrate.history(directory=dir)
Ejemplo n.º 8
0
def db_current(c, dir=DEFAULT_MIGRATION_DIR):
    """
    Show current migration revision.
    """
    with app.app_context():
        migrate.current(directory=dir)
Ejemplo n.º 9
0
def db_downgrade(c, dir=DEFAULT_MIGRATION_DIR):
    """
    Downgrade database to a specific revision.
    """
    with app.app_context():
        migrate.downgrade(directory=dir)
Ejemplo n.º 10
0
def db_stamp(c, dir=DEFAULT_MIGRATION_DIR):
    """
    Set database revision to a specific value.
    """
    with app.app_context(directory=dir):
        pass
Ejemplo n.º 11
0
def db_stamp(c, dir=DEFAULT_MIGRATION_DIR):
    with app.app_context(directory=dir):
        pass
Ejemplo n.º 12
0
def db_downgrade(c, dir=DEFAULT_MIGRATION_DIR):
    with app.app_context():
        migrate.downgrade(directory=dir)
Ejemplo n.º 13
0
def db_revision(c, dir=DEFAULT_MIGRATION_DIR):
    with app.app_context():
        migrate.revision(directory=dir)
Ejemplo n.º 14
0
def db_history(c, dir=DEFAULT_MIGRATION_DIR):
    """
    List migration history.
    """
    with app.app_context():
        migrate.history(directory=dir)
Ejemplo n.º 15
0
def db_init_migrations(c, dir=None):
    """
    Update the project to support migrations.
    """
    with app.app_context():
        migrate.init(dir)
Ejemplo n.º 16
0
def db_init_migrations(c, dir=None):
    """
    Update the project to support migrations.
    """
    with app.app_context():
        migrate.init(dir)
Ejemplo n.º 17
0
def db_current(c, dir=DEFAULT_MIGRATION_DIR):
    """
    Show current migration revision.
    """
    with app.app_context():
        migrate.current(directory=dir)
Ejemplo n.º 18
0
def db_revision(c, dir=DEFAULT_MIGRATION_DIR):
    """
    Generate new empty revision script.
    """
    with app.app_context():
        migrate.revision(directory=dir)
Ejemplo n.º 19
0
def db_revision(c, dir=DEFAULT_MIGRATION_DIR):
    """
    Generate new empty revision script.
    """
    with app.app_context():
        migrate.revision(directory=dir)
Ejemplo n.º 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)
Ejemplo n.º 21
0
def db_init_migrations(c, dir=None):
    with app.app_context():
        migrate.init(dir)