使用SQLAlchemy管理数据库迁移的方法?

Jer*_*ell 16 python sqlalchemy database-migration

我看过sqlalchemy-migrate,但它似乎很多工作,但我找不到任何有用的例子.

有人愿意分享他们如何处理这个问题吗?

Dmi*_*ylo 18

查看新项目Alembic:http: //readthedocs.org/docs/alembic/en/latest/index.html


Wol*_*lph 1

我没有任何个人经验sqlalchemy-migrate,但这里有一个教程:

http://caneypuggies.alwaysreformed.com/wiki/DevelopingWithMigrations

如果您使用那里提到的脚本,您可以像这样创建迁移:

./new_migration.sh "Describe the new migration here"
Run Code Online (Sandbox Code Playgroud)

我使用 South 进行所有迁移:http://south.aeracode.org/ 请注意,它取决于 Django 框架。