示例#1
0
def downgrade(directory=None, _revision='-1', sql=False, tag=None, x_arg=None):
    """Revert to a previous version"""
    app = current_app()
    config = app.extra['migrate'].migrate.get_config(directory, x_arg=x_arg)
    if sql and _revision == '-1':
        _revision = 'head:-1'
    command.downgrade(config, _revision, sql=sql, tag=tag)
示例#2
0
def migrate(directory=None,
            message=None,
            sql=False,
            head='head',
            splice=False,
            branch_label=None,
            version_path=None,
            rev_id=None,
            x_arg=None):
    """Alias for 'revision --autogenerate'"""
    app = current_app()
    config = app.extra['migrate'].migrate.get_config(directory,
                                                     opts=['autogenerate'],
                                                     x_arg=x_arg)
    if alembic_version >= (0, 7, 0):
        command.revision(config,
                         message,
                         autogenerate=True,
                         sql=sql,
                         head=head,
                         splice=splice,
                         branch_label=branch_label,
                         version_path=version_path,
                         rev_id=rev_id)
    else:
        command.revision(config, message, autogenerate=True, sql=sql)
示例#3
0
def current(directory=None, verbose=False, head_only=False):
    """Display the current revision for each database."""
    app = current_app()
    config = app.extra['migrate'].migrate.get_config(directory)
    if alembic_version >= (0, 7, 0):
        command.current(config, verbose=verbose, head_only=head_only)
    else:
        command.current(config)
示例#4
0
def branches(directory=None, verbose=False):
    """Show current branch points"""
    app = current_app()
    config = app.extra['migrate'].migrate.get_config(directory)
    if alembic_version >= (0, 7, 0):
        command.branches(config, verbose=verbose)
    else:
        command.branches(config)
示例#5
0
def show(directory=None, _revision='head'):
    """Show the revision denoted by the given symbol."""
    if alembic_version >= (0, 7, 0):
        app = current_app()
        config = app.extra['migrate'].migrate.get_config(directory)
        command.show(config, _revision)
    else:
        raise RuntimeError('Alembic 0.7.0 or greater is required')
示例#6
0
def edit(directory=None, _revision='current'):
    """Edit current revision."""
    if alembic_version >= (0, 8, 0):
        app = current_app()
        config = app.extra['migrate'].migrate.get_config(directory)
        command.edit(config, _revision)
    else:
        raise RuntimeError('Alembic 0.8.0 or greater is required')
示例#7
0
def init(directory=None):
    """Creates a new migration repository"""
    app = current_app()
    if directory is None:
        directory = app.extra['migrate'].directory
    config = Config()
    config.set_main_option('script_location', directory)
    config.config_file_name = os.path.join(directory, 'alembic.ini')
    config = app.extra['migrate'].migrate.call_configure_callbacks(config)
    command.init(config, directory, 'fastapi')
示例#8
0
def heads(directory=None, verbose=False, resolve_dependencies=False):
    """Show current available heads in the script directory"""
    if alembic_version >= (0, 7, 0):
        app = current_app()
        config = app.extra['migrate'].migrate.get_config(directory)
        command.heads(config,
                      verbose=verbose,
                      resolve_dependencies=resolve_dependencies)
    else:
        raise RuntimeError('Alembic 0.7.0 or greater is required')
示例#9
0
def history(directory=None,
            rev_range=None,
            verbose=False,
            indicate_current=False):
    """List changeset scripts in chronological order."""
    app = current_app()
    config = app.extra['migrate'].migrate.get_config(directory)
    if alembic_version >= (0, 9, 9):
        command.history(config,
                        rev_range,
                        verbose=verbose,
                        indicate_current=indicate_current)
    elif alembic_version >= (0, 7, 0):
        command.history(config, rev_range, verbose=verbose)
    else:
        command.history(config, rev_range)
示例#10
0
def merge(directory=None,
          revisions='',
          message=None,
          branch_label=None,
          rev_id=None):
    """Merge two revisions together.  Creates a new migration file"""
    if alembic_version >= (0, 7, 0):
        app = current_app()
        config = app.extra['migrate'].migrate.get_config(directory)
        command.merge(config,
                      revisions,
                      message=message,
                      branch_label=branch_label,
                      rev_id=rev_id)
    else:
        raise RuntimeError('Alembic 0.7.0 or greater is required')
示例#11
0
def revision(directory=None,
             message=None,
             autogenerate=False,
             sql=False,
             head='head',
             splice=False,
             branch_label=None,
             version_path=None,
             rev_id=None):
    """Create a new revision file."""
    app = current_app()
    config = app.extra['migrate'].migrate.get_config(directory)
    if alembic_version >= (0, 7, 0):
        command.revision(config,
                         message,
                         autogenerate=autogenerate,
                         sql=sql,
                         head=head,
                         splice=splice,
                         branch_label=branch_label,
                         version_path=version_path,
                         rev_id=rev_id)
    else:
        command.revision(config, message, autogenerate=autogenerate, sql=sql)
示例#12
0
def stamp(directory=None, _revision='head', sql=False, tag=None):
    """'stamp' the revision table with the given revision; don't run any
    migrations"""
    app = current_app()
    config = app.extra['migrate'].migrate.get_config(directory)
    command.stamp(config, _revision, sql=sql, tag=tag)
示例#13
0
def upgrade(directory=None, _revision='head', sql=False, tag=None, x_arg=None):
    """Upgrade to a later version"""
    app = current_app()
    config = app.extra['migrate'].migrate.get_config(directory, x_arg=x_arg)
    command.upgrade(config, _revision, sql=sql, tag=tag)