8

每次我运行rake db:migraterails 都会决定更改我的 schema.rb 文件。在某些情况下,这是完全合理的,但在其他一些情况下,它似乎无缘无故地这样做。我感到困惑的情况是,当我从 git 中提取新的迁移和 schema.rb 的新版本,然后运行rake db:migrate​​. 由于此迁移附带了新版本的 schema.rb 文件,因此我不应该更新 schema.rb。然而,rails 每次都会改变它。当发生这种情况时,我发现非常愚蠢的变化,例如:

add_index "my_table", ["column1", "column2"], :name => "index_on_some_columns"

add_index "my_table", ["column2", "column1"], :name => "index_on_some_columns"

当这种情况发生时,我只是奔跑git checkout db/schema.rb并继续我的生活,但这让我感到无休止。它这样做有什么原因,我怎样才能阻止它这样做?

编辑:这是一个差异的摘录

@@ -165,12 +165,11 @@ ActiveRecord::Schema.define(:version => 20130206001907) do
     t.column "updated_at", :datetime
-    t.column "coordinates", :point, :srid => 4326
@@ -200,15 +199,16 @@ ActiveRecord::Schema.define(:version => 20130206001907) do
     t.column "something", :boolean
+    t.column "coordinates", :point, :srid => 4326
+    t.column "random_string", :string
     t.column "remote", :string
-    t.column "random_string", :string
   end

-  add_index "my_table", ["id", "foreign_id"], :name => "index_active_my_table_on_foreign_and_id"
-  add_index "my_table", ["id", "active"], :name => "index_my_table_on_active_and_id"
-  add_index "my_table", ["id", "content_modified_at"], :name => "index_my_table_on_content_modified_at_and_id"
+  add_index "my_table", ["foreign_id", "id"], :name => "index_active_my_table_on_foreign_and_id"
+  add_index "my_table", ["active", "id"], :name => "index_my_table_on_active_and_id"
+  add_index "my_table", ["content_modified_at", "id"], :name => "index_my_table_on_content_modified_at_and_id"
4

2 回答 2

6

由于此迁移附带了新版本的 schema.rb 文件,因此我不应该更新 schema.rb。

这是不准确的。

每次 Rails 运行迁移时,它都会schema.rb使用数据库作为源来更新文件。它不查看现有schema.rb文件,它只是使用数据库中的信息并覆盖它。

看来真正的问题是在两个不同的环境(Ruby、Rails、MySQL、操作系统的不同组合)中运行相同的迁移可能会在生成schema.rb文件时产生不同的结果。

解决方案是确保每个签入代码的人都尽可能使用相同的软件版本。如果不可能(因为这是 Windows 与 Linux 与 Mac 的区别,而且您不想更改操作系统),您只需要处理不便。

于 2013-02-12T22:36:27.183 回答
2

对我来说,解决方案是rake db:schema:load第一次。而不是无缘无故地rake db:migrate停止改变我的。schema.rb

注意: rake db:schema:load将删除所有现有数据并根据现有 schema.rb 重新创建数据库。

于 2016-09-01T00:19:15.337 回答