diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-04-15 14:04:28 -0500 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-05-21 03:16:22 -0500 |
commit | 89ad628e887f2e7afa9b956c0fb52cfb31f6141b (patch) | |
tree | 35c5a1ccc8481f783c6b1142bc550ef7b90351e7 /app/models | |
parent | abb8848eb7f8300939fa40ed6d040c754c88506a (diff) |
Add `share_key` column to status table in preparation for letting folks generate/revoke links to view private posts.
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/status.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/models/status.rb b/app/models/status.rb index fa16ede49..2e4808cb5 100644 --- a/app/models/status.rb +++ b/app/models/status.rb @@ -26,6 +26,7 @@ # content_type :string # tsv :tsvector # curated :boolean +# sharekey :string # class Status < ApplicationRecord |