diff options
author | David Gay <david@davidgay.org> | 2021-05-28 12:05:41 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-05-28 12:05:41 -0400 |
commit | a8b578eec633436ac2ea94304bd946008de7555f (patch) | |
tree | c238034f28bc672de8224637c94bcceb80d5a346 /app | |
parent | 87fd3a3650b31bb470a61f213993f20af2f94388 (diff) |
Make all activities innate and remove activity learning, for now
Diffstat (limited to 'app')
-rw-r--r-- | app/models/activity.rb | 2 |
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 |