blob: d0df9516221e0a1d220ee9221e16659b1abc9ed6 (
plain) (
tree)
|
|
class Ship < ActiveRecord::Base
self.record_timestamps = false
belongs_to :pirate, :validate => true
has_many :parts, :class_name => 'ShipPart', :autosave => true
accepts_nested_attributes_for :pirate, :allow_destroy => true, :reject_if => proc { |attributes| attributes.empty? }
validates_presence_of :name
end
|