summaryrefslogtreecommitdiff
path: root/app/models
diff options
context:
space:
mode:
authorDavid Gay <david@davidgay.org>2021-05-28 12:05:41 -0400
committerDavid Gay <david@davidgay.org>2021-05-28 12:05:41 -0400
commita8b578eec633436ac2ea94304bd946008de7555f (patch)
treec238034f28bc672de8224637c94bcceb80d5a346 /app/models
parent87fd3a3650b31bb470a61f213993f20af2f94388 (diff)
Make all activities innate and remove activity learning, for now
Diffstat (limited to 'app/models')
-rw-r--r--app/models/activity.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/activity.rb b/app/models/activity.rb
index 4a169b4..9910295 100644
--- a/app/models/activity.rb
+++ b/app/models/activity.rb
@@ -4,5 +4,5 @@ class Activity < ApplicationRecord
belongs_to :location, optional: true
validates :gid, :name, :description, presence: true
- attribute :innate, :boolean, default: false
+ attribute :innate, :boolean, default: true
end