summaryrefslogtreecommitdiff
path: root/app/models/built_hearth_amenity.rb
blob: 5ae8a422071779701a45534eb132d1422e9c4404 (plain)
1
2
3
4
5
6
class BuiltHearthAmenity < ApplicationRecord
  belongs_to :hearth
  belongs_to :hearth_amenity

  validates :hearth_id, uniqueness: { scope: :hearth_amenity_id }
end