]> Untitled Git - lemmy.git/blob - migrations/2023-06-27-065106_add_ui_settings/up.sql
Revert "Attempt to fix CI building wrong commits (#3830)"
[lemmy.git] / migrations / 2023-06-27-065106_add_ui_settings / up.sql
1 -- Add the blur_nsfw to the local user table as a setting
2 ALTER TABLE local_user
3     ADD COLUMN blur_nsfw boolean NOT NULL DEFAULT TRUE;
4
5 -- Add the auto_expand to the local user table as a setting
6 ALTER TABLE local_user
7     ADD COLUMN auto_expand boolean NOT NULL DEFAULT FALSE;
8