Symfony 主义迁移问题

发布于 2024-11-27 12:29:23 字数 429 浏览 1 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花期渐远 2024-12-04 12:29:23

这是可能的。尝试使用以下命令来清理模型文件。

./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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文