我可以在alembic上使用.py文件而不是.ini文件吗?

时间:2015-07-06 06:00:13

标签: python sqlalchemy migration alembic

我想使用alembic.py代替alembic.ini进行配置 但我找不到任何类型配置的例子 有没有办法不使用alembic.ini?

1 个答案:

答案 0 :(得分:4)

您在寻找this

from alembic.config import Config
alembic_cfg = Config()
alembic_cfg.set_main_option("script_location", "myapp:migrations")
alembic_cfg.set_main_option("url", "postgresql://foo/bar")
alembic_cfg.set_section_option("mysection", "foo", "bar")