aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/minivan.rb
blob: 4d04d808a9548b970e496d47720319ab9e36b588 (plain) (blame)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true
class Minivan < ActiveRecord::Base
  self.primary_key = :minivan_id

  belongs_to :speedometer
  has_one :dashboard, through: :speedometer

  attr_readonly :color
end