aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/department.rb
blob: e8cdae8976352997c2aa27a2f8cd7d9e3d9c7d70 (plain) (blame)
1
2
3
4
5
# frozen_string_literal: true
class Department < ActiveRecord::Base
  has_many :chefs
  belongs_to :hotel
end