Как создать пользовательскую команду миграции миграции с именем схемы в качестве аргумента в flask migrate? - PullRequest
0 голосов
/ 14 июля 2020

Я пытаюсь настроить многопользовательский проект. Для этого мне нужно создать специальную команду для создания схемы перед выполнением фактической миграции.

Мне нужно что-то вроде: python db.py db migrate --schemas="foo1"

Я сослался на документацию на Docs и направил ответ на этот вопрос. Но я не могу перейти к делу.

def run_migrations_online():
    """Run migrations in 'online' mode.

    In this scenario we need to create an Engine
    and associate a connection with the context.

    """

    # this callback is used to prevent an auto-migration from being generated
    # when there are no changes to the schema
    # reference: http://alembic.zzzcomputing.com/en/latest/cookbook.html
    def process_revision_directives(context, revision, directives):
        if getattr(config.cmd_opts, 'autogenerate', False):
            script = directives[0]
            if script.upgrade_ops.is_empty():
                directives[:] = []
                logger.info('No changes in schema detected.')

    connectable = engine_from_config(
        config.get_section(config.config_ini_section),
        prefix='sqlalchemy.',
        poolclass=pool.NullPool,
    )

    with connectable.connect() as connection:
        context.configure(
            connection=connection,
            target_metadata=target_metadata,
            process_revision_directives=process_revision_directives,
            **current_app.extensions['migrate'].configure_args,
            include_schemas=True # tried to pass schema name as --schema="foo" doesn't works.
        )
          
        with context.begin_transaction():
            context.run_migrations()
...