2017-03-28 4 views
1

메타 데이터로 컨트롤러에서 정보를 캡처하는 단계는 작동하지 않습니다. (루비 2.3.3, 4.2 paper_trail 레일 5.2.3)메타 데이터로 용지 트레일 컨트롤러가 작동하지 않습니다. (Ruby 2.3.3, Rails 4.2 및 paper_trail 5.2.3)

모델

has_paper_trail only: [:status] 

I가 6.0 종이 트레일 업그레이드 해결

class AddHotelToVersions < ActiveRecord::Migration 
    def change 
     add_reference :versions, :hotel, index: true, foreign_key: true, null: false 
     add_column :versions, :ip, :string, null: false 
     add_column :versions, :user_agent, :string, null: false 
    end 
end 

제어기

def info_for_paper_trail 
    { hotel_id: current_user.hotel.id, ip: request.remote_ip, user_agent: request.user_agent } 
end 

답변

0

마이그레이션 .2