mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-10-31 17:50:01 +00:00
Dessalines
fca8e6a0a9
- Adding option to close registration. Fixes #350 - Adding option to disable showing NSFW buttons. Fixes #364 - Adding option to disable downvotes. Fixes #239
16 lines
529 B
SQL
Vendored
16 lines
529 B
SQL
Vendored
-- Drop the columns
|
|
drop view site_view;
|
|
alter table site drop column enable_downvotes;
|
|
alter table site drop column open_registration;
|
|
alter table site drop column enable_nsfw;
|
|
|
|
-- Rebuild the views
|
|
|
|
create view site_view as
|
|
select *,
|
|
(select name from user_ u where s.creator_id = u.id) as creator_name,
|
|
(select count(*) from user_) as number_of_users,
|
|
(select count(*) from post) as number_of_posts,
|
|
(select count(*) from comment) as number_of_comments,
|
|
(select count(*) from community) as number_of_communities
|
|
from site s;
|