]> Untitled Git - lemmy.git/blob - migrations/2023-06-27-065106_add_ui_settings/up.sql
remove performance-problematic and buggy duplicate site aggregates (#3732)
[lemmy.git] / migrations / 2023-06-27-065106_add_ui_settings / up.sql
1
2 -- Add the blur_nsfw to the local user table as a setting
3 alter table local_user 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 add column auto_expand boolean not null default false;