我需要模仿標準的Rails has_many關係,但將外鍵存儲在父項中。 class Product < ActiveRecord::Base
has_many :questions
end
class Question < ActiveRecord::Base
belongs_to :product
end
這是因爲我使用PaperTrail的版本,當我取回@pr
我正在構建嚴重依賴has_many關聯的Rails 4應用程序。我很樂意使用像paper_trail這樣的gem來處理版本控制,但它does not handle has_many關聯,at least not yet。但是,older gems似乎在先前版本的Rails中支持此行爲。有沒有相當於Rails 4的解決方案?
我試圖從Ruby 1.9.3 to Ruby 2.1.2 (Rails 4.0)升級。我正在使用RVM。 我安裝了Ruby 2.1.2,更新了Gemfile,包括指定"gem 'paper_trail', '~> 3.0.5'",用RVM切換到Ruby 2.1.2,創建了一個新的gemset,並切換到它。 然後我做了一個軟件包安裝。 When I attempt to run rails serv