rails/activerecord/test/models/department.rb
2017-07-19 22:27:07 +03:00

7 lines
111 B
Ruby

# frozen_string_literal: true
class Department < ActiveRecord::Base
has_many :chefs
belongs_to :hotel
end