0

我有一个使用 ActiveRecord concat 方法将对象添加到另一个对象的 has_many 关系的迁移。自创建迁移以来,我已向包含验证的父模型添加了一个新属性。

不幸的是,早期的迁移被破坏了,因为 concat 试图保存父对象,并且验证找不到关联的属性(它还不存在)。我是否错误地进行了数据迁移?

这是迁移:

class RemoveTransportKeyFromInvites < ActiveRecord::Migration
  def up
    Invite.find_each do |invite|
      transport_key = Invite.where(id: invite.id).pluck(:transport_key).first
      guest_user = GuestUser.first_or_create!(transport_key: transport_key)
      guest_user.invites << invite
    end
    remove_column :invites, :transport_key
  end

  def down
    add_column :invites, :transport_key, :string
  end
end

和模型:

class Invite < ActiveRecord::Base
  # some code omitted
  validates_presence_of :inviter_email
  # rest of code omitted

导致此错误:

undefined method `inviter_email' for #<InviteToMeal:0x007f8ece07c060>

谢谢,任何帮助将不胜感激!

4

1 回答 1

1

规定的方法是在迁移中定义一个“存根”模型,以便不会加载真实模型(带有验证)。 find_each并且其他 ActiveRecord 调用仍然有效。

class RemoveTransportKeyFromInvites < ActiveRecord::Migration
  class Invite < ActiveRecord::Base; end

  def up
    # etc..

有关更多信息,请参阅本指南

于 2013-04-11T15:13:28.783 回答