mirror of
https://github.com/LemmyNet/lemmy
synced 2024-10-30 15:21:20 +00:00
be1389420b
* SQL format checking, 1. * SQL format checking, 2. * SQL format checking, 3. * SQL format checking, 4. * SQL format checking, 5. * Running pg_format * Getting rid of comment. * Upping pg_format version. * Using git ls-files for sql format check. * Fixing sql lints. * Addressing PR comments.
47 lines
796 B
SQL
47 lines
796 B
SQL
-- 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;
|
|
|