mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
5dbc9d40a4
Signed-off-by: Michael Koziarski <michael@koziarski.com> Signed-off-by: Eloy Duran <eloy.de.enige@gmail.com> [#1892 state:committed]
10 lines
306 B
Ruby
10 lines
306 B
Ruby
class Ship < ActiveRecord::Base
|
|
self.record_timestamps = false
|
|
|
|
belongs_to :pirate
|
|
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
|