blob: 4a169b4afae98035a29219e8c434326c57ed5153 (
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: false
end
|