2023-07-26 11:53:45 +00:00
|
|
|
-- Add the blur_nsfw to the local user table as a setting
|
2023-08-02 16:44:51 +00:00
|
|
|
ALTER TABLE local_user
|
|
|
|
ADD COLUMN blur_nsfw boolean NOT NULL DEFAULT TRUE;
|
2023-07-26 11:53:45 +00:00
|
|
|
|
|
|
|
-- Add the auto_expand to the local user table as a setting
|
2023-08-02 16:44:51 +00:00
|
|
|
ALTER TABLE local_user
|
|
|
|
ADD COLUMN auto_expand boolean NOT NULL DEFAULT FALSE;
|
|
|
|
|