lemmy/server/migrations/2019-08-29-040006_add_community_count/down.sql
2019-08-28 21:28:06 -07:00

10 lines
291 B
SQL
Vendored

drop view site_view;
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
from site s;