Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是一名正在学习 python 的 Rails 开发人员,我正在使用金字塔框架做一个项目。如果我以某种方式更改模型,我习惯于使用某种方式回滚数据库更改。是否有某种类似于 initialize_project_db 命令的数据库回滚?
initialize_db不是迁移脚本。它用于引导您的模型,仅此而已。如果您想将迁移与升级/回滚支持联系起来,请alembic查看 SQL 模式迁移。
initialize_db
alembic