mirror of
https://github.com/LemmyNet/lemmy
synced 2024-11-03 09:40:16 +00:00
7c51a36012
Forgot to add migrations Add `sensitive` column to activities table, so PMs arent served over HTTP Remove user_id column from actvity table Co-authored-by: Felix Ableitner <me@nutomic.com> Reviewed-on: https://yerbamate.ml/LemmyNet/lemmy/pulls/127
2 lines
105 B
SQL
2 lines
105 B
SQL
ALTER TABLE activity DROP COLUMN user_id;
|
|
ALTER TABLE activity ADD COLUMN sensitive BOOLEAN DEFAULT TRUE; |