init

alembic.command.init(config: Config, directory: str, template: str = 'generic', package: bool = False) → None

Initialize a new scripts directory.

初始化一个新的脚本目录。

Parameters:

  • config – a Config object.

  • directory – string path of the target directory

  • template – string name of the migration environment template to use.

  • package – when True, write __init__.py files into the environment location as well as the versions/ location.

    New in version 1.2.

参数:

  • config – 一个 Config 实例.

  • directory – 目标目录的字符串路径

  • template – 要使用的迁移环境 模板 的字符串名称。

  • package – 如果为 True ,则将 __init__.py 文件写入环境位置以及 版本目录 位置。

    1.2.版本中新增