mirror of
https://github.com/github/rails.git
synced 2026-02-15 16:45:08 -05:00
10 lines
250 B
Ruby
10 lines
250 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
|
|
|
|
validates_presence_of :name
|
|
end |