summaryrefslogtreecommitdiff
path: root/app/models/activity.rb
blob: 9910295694e8c9ee43d0a55f276eda0bddef4856 (plain)
1
2
3
4
5
6
7
8
class Activity < ApplicationRecord
  include HasWhatnot, HasCostsAndRequirements

  belongs_to :location, optional: true
  validates :gid, :name, :description, presence: true

  attribute :innate, :boolean, default: true
end