mirror of https://github.com/LemmyNet/lemmy.git
7 lines
273 B
MySQL
7 lines
273 B
MySQL
|
|
||
|
-- 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;
|