aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/ship.rb
blob: c46e27f3ae167c3167b4feb93e4f0c0979ac6279 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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

  validates_presence_of :name
end