Rails回滚change_column迁移

时间:2018-05-22 04:16:53

标签: ruby-on-rails ruby-on-rails-4 ruby-on-rails-5 database-migration

我刚刚迁移了我的create_supplier迁移,然后我意识到我的一个数据类型是错误的,所以我添加了另一个迁移,如下所示: -

class ChangePhoneToStringInSuppliers < ActiveRecord::Migration[5.1]
  def change
    change_column :suppliers, :phone_no_1, :string
    change_column :suppliers, :phone_no_2, :string
  end
end

迁移之后,我意识到我没有推送我的代码,所以理想情况下我应该回滚到create_suppliers迁移并在其中添加更改。当我回滚ChangePhoneToStringInSuppliers时,我收到以下错误: -

This migration uses change_column, which is not automatically reversible.
To make the migration reversible you can either:
1. Define #up and #down methods in place of the #change method.
2. Use the #reversible method to define reversible behavior.

我认为上面错误信息中提出的方法(以及互联网上的其他帖子)是对这个问题的预防,而不是治愈(如果我错了,请纠正我)。我现在该如何回滚此迁移?

1 个答案:

答案 0 :(得分:3)

您需要更新迁移文件代码。删除def更改方法,而是向上和向下添加两个方法,因为不支持回滚更改列迁移。

我不知道您之前使用的是哪种列数据类型,因此请根据需要进行更改

class ChangePhoneToStringInSuppliers < ActiveRecord::Migration[5.1]
    def up
      change_column :suppliers, :phone_no_1, :string
      change_column :suppliers, :phone_no_2, :string
    end

    def down
      change_column :suppliers, :phone_no_1, :text
      change_column :suppliers, :phone_no_2, :text
    end
end

在up方法中编写您要执行的操作,例如将列数据类型更改为文本

在down方法中,如果你回滚迁移它应该做什么,就像你当前的列数据类型是字符串一样,你想要在回滚时将它备份为字符串而不是写出适当的代码。