You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lemmy/migrations/2023-06-27-065106_add_ui_se.../up.sql

9 lines
281 B
SQL

-- Add the blur_nsfw to the local user table as a setting
ALTER TABLE local_user
ADD COLUMN blur_nsfw boolean NOT NULL DEFAULT TRUE;
-- Add the auto_expand to the local user table as a setting
ALTER TABLE local_user
ADD COLUMN auto_expand boolean NOT NULL DEFAULT FALSE;