summaryrefslogtreecommitdiff
path: root/app/models/location.rb
blob: e0aaf9bbd1897d79277655fe1caefccd8caa0eb9 (plain)
1
2
3
4
5
6
7
8
9
class Location < ApplicationRecord
  include HasWhatnot

  has_many :activities
  has_many :characters
  has_many :hearths
  has_many :monster_spawns
  validates :gid, :name, presence: true
end