blob: b6a8a506b4d434da36684e4b4f4eb2b10a46dd2c (
plain) (
tree)
|
|
class ShipPart < ActiveRecord::Base
belongs_to :ship
has_many :trinkets, :class_name => "Treasure", :as => :looter
accepts_nested_attributes_for :trinkets, :allow_destroy => true
validates_presence_of :name
end
|