mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
10 lines
168 B
Ruby
10 lines
168 B
Ruby
class Minivan < ActiveRecord::Base
|
|
set_primary_key :minivan_id
|
|
|
|
belongs_to :speedometer
|
|
has_one :dashboard, :through => :speedometer
|
|
|
|
attr_readonly :color
|
|
|
|
end
|