Symfony 主义迁移问题
我使用 symfony 1.4.11 ,我有一个项目...... 我有 schema.yml ,并且我有不在架构中的表的迁移。例如,我在我的数据库“页面”表中,它没有在模式中描述。当我第一次获得项目时,我做了: build --all --and-load --no-confirmation
;我得到了我的数据库,我认为它从基类创建了一些表,因为我的数据库中有很多表,但它们没有在 schema 中描述。 所以现在我需要向我的页表添加一些新字段,我进行迁移,一切都好,我的数据库中有新字段,但在 schema.yml 中没有它,因此,当我进行 symfonydoctrine:build --all-classes 时,什么也没有发生,它不会生成带有新列的页面类。我不明白,是否可以在没有模式的情况下生成新类或更改类?在我之前做项目的人是如何做到这一点的? 谢谢你!抱歉我的英语不好
I use symfony 1.4.11 , I have a project...
I have schema.yml , and I have migrations with tables which are not in the schema. For example I have in my db "pages" table, and it not described in schema. When I get project in first time I make: build --all --and-load --no-confirmation
; and I get my db,I think that it created some tables from Base classes, because there are many tables in my db, but they are not described in schema . So now I need add a few new fields to my page table, I make migration, and it is all ok, I have new fields in my db, but I do not have it in schema.yml, so when I make symfony doctrine:build --all-classes
nothing happen it do not generate page class with new column. I do not understand, if it possible to generate new class or changes to class without schema? How people that make project before me , do this?
Thank you! And sorry for my bad English
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是可能的。尝试使用以下命令来清理模型文件。
./symfony 学说:clean-model-files
如果你想使用迁移,你不应该再使用学说:build --all --and-load --no-confirmation 。迁移假设增量更新。每次都删除和构建数据库并不好。
尝试遵循这些资源
it's possible. Try to use the following command to clean you model files.
./symfony doctrine:clean-model-files
if you want to use migrations, you should not use doctrine:build --all --and-load --no-confirmation anymore. Migrations assume incremental updates. Dropping and building the DB every time is not good.
Try to follow those resources