mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-09 17:55:10 +00:00
f9351b6512
* add new flag to api * add new ui settings for local user * remove extraneous def * add props to application reg. * fix clippy updated these * re-order db schema entries * remove dupe * update lemmy sdk * update lemmy js client --------- Co-authored-by: Nutomic <me@nutomic.com>
7 lines
273 B
SQL
7 lines
273 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;
|