2つの場所で同じリソースを使用するモデルを作成しようとしています。
class AttachmentFileComment < ActiveRecord::Base
attr_accessible :action_type
belongs_to :attachments, :conditions=>['attachments.attachable_type=?', 'project']
belongs_to :users
belongs_to :approval_level
belongs_to :comments
belongs_to :attachments, :as=> :file_id, :conditions=>['attachments.attachable_type=?', 'attachment']
end
上記の場合、移行を作成するにはどうすればよいですか?