Rake 与我的数据库不同步

发布于 2024-11-11 03:57:56 字数 74 浏览 1 评论 0原文

我继承了一个Ruby on Rails项目,其中程序员没有使用rake来创建数据库模式,所以看起来非常不同步,有没有办法纠正这个问题?

I have inherited a Ruby on Rails project where the programmer didn't use rake to create the db schema, so it seems very out of synch, is there a way to rectify this?

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

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

发布评论

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

评论(1

忘羡 2024-11-18 03:57:56

首先创建一个 schema.rb 文件

rake db:schema:dump

然后对其进行迁移。

class CreateMigration < ActiveRecord::Migration
  def self.up
    # insert schema.rb here
  end

  def self.down
  end
end

您可能还需要创建 schema_migrations 表,并手动向其中添加此迁移的时间戳。

First create a schema.rb file

rake db:schema:dump

Then make a migration ot of it.

class CreateMigration < ActiveRecord::Migration
  def self.up
    # insert schema.rb here
  end

  def self.down
  end
end

You might also need to create the schema_migrations table, and manually add the timestamp for this migration to it.

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