如何为现有 RoR 模型生成数据库架构或迁移文件

发布于 2024-10-28 11:45:32 字数 65 浏览 2 评论 0原文

有没有办法从现有的 RoR 模型生成迁移文件或数据库模式文件?我丢失了原始迁移文件,数据库已被删除,我不想手工编写。

Is there a way to generate a migration file or db schema file from an existing RoR model? I lost my original migration files and the db has been deleted and I don't want to write either by hand.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

走野 2024-11-04 11:45:32

您应该有一个在运行迁移后创建的 db/schema.rb 文件。如果您的存储库中没有此文件并且没有数据库备份,那么 ActiveRecord 无法为您做任何事情。

You should have a db/schema.rb file that is created after your migrations have been run. If you don't have this file in your repo and you don't have a db backup then there is nothing ActiveRecord can do for you.

尝蛊 2024-11-04 11:45:32

对我来说似乎不可能。 ActiveRecord 模型的属性由数据库架构确定。模型中通常没有任何代码明确说明模型的组成(关联除外)。

It doesn't seem like it would be possible to me. An ActiveRecord model's attributes are determined by the database schema. There is not usually any code within the model that explicitly states what the model consists of (except for associations).

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