当前位置: 首页>>代码示例>>Python>>正文


Python command.show方法代码示例

本文整理汇总了Python中alembic.command.show方法的典型用法代码示例。如果您正苦于以下问题:Python command.show方法的具体用法?Python command.show怎么用?Python command.show使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在alembic.command的用法示例。


在下文中一共展示了command.show方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: show

# 需要导入模块: from alembic import command [as 别名]
# 或者: from alembic.command import show [as 别名]
def show(directory=None, revision='head'):
    """Show the revision denoted by the given symbol."""
    if alembic_version >= (0, 7, 0):
        config = current_app.extensions['migrate'].migrate.get_config(
            directory)
        command.show(config, revision)
    else:
        raise RuntimeError('Alembic 0.7.0 or greater is required') 
开发者ID:jpush,项目名称:jbox,代码行数:10,代码来源:__init__.py

示例2: show

# 需要导入模块: from alembic import command [as 别名]
# 或者: from alembic.command import show [as 别名]
def show(config, revision: str):
    """Show the revision denoted by the given symbol."""

    bot = Bot(config)

    directory = os.path.join('yui', 'migrations')
    c = Config(os.path.join(directory, 'alembic.ini'))
    c.set_main_option('script_location', directory)
    c.set_main_option('sqlalchemy.url', bot.config.DATABASE_URL)
    c.attributes['Base'] = bot.orm_base

    command.show(c, revision) 
开发者ID:item4,项目名称:yui,代码行数:14,代码来源:cli.py

示例3: show

# 需要导入模块: from alembic import command [as 别名]
# 或者: from alembic.command import show [as 别名]
def show(context, directory='migrations', revision='head'):
    """Show the revision denoted by the given symbol."""
    if alembic_version >= (0, 7, 0):
        config = _get_config(directory)
        command.show(config, revision)
    else:
        raise RuntimeError('Alembic 0.7.0 or greater is required') 
开发者ID:frol,项目名称:flask-restplus-server-example,代码行数:9,代码来源:db.py

示例4: show

# 需要导入模块: from alembic import command [as 别名]
# 或者: from alembic.command import show [as 别名]
def show(self, revision):
        alembic_cmd.show(self.cfg, revision) 
开发者ID:quantmind,项目名称:lux,代码行数:4,代码来源:migrations.py

示例5: make_parser

# 需要导入模块: from alembic import command [as 别名]
# 或者: from alembic.command import show [as 别名]
def make_parser(self, subparsers):
        parser = subparsers.add_parser('show', help=self.show.__doc__)
        parser.add_argument('revision', nargs='?', default="head",
                            help="revision identifier")
        parser.add_argument('-d', '--directory', dest='directory', default=None,
                            help=("migration script directory (default is "
                                  "'migrations')"))
        return parser 
开发者ID:mozilla,项目名称:build-relengapi,代码行数:10,代码来源:alembic_wrapper.py

示例6: run

# 需要导入模块: from alembic import command [as 别名]
# 或者: from alembic.command import show [as 别名]
def run(self, parser, args):
        self.show(**vars(args)) 
开发者ID:mozilla,项目名称:build-relengapi,代码行数:4,代码来源:alembic_wrapper.py

示例7: show

# 需要导入模块: from alembic import command [as 别名]
# 或者: from alembic.command import show [as 别名]
def show(self, directory=None, revision='head', **kwargs):  # pragma: no cover
        """Show the revision denoted by the given symbol."""
        config = _get_config(directory)
        command.show(config, revision) 
开发者ID:mozilla,项目名称:build-relengapi,代码行数:6,代码来源:alembic_wrapper.py


注:本文中的alembic.command.show方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。