summaryrefslogtreecommitdiff
path: root/db/rest/post/api_post.sql
diff options
context:
space:
mode:
Diffstat (limited to 'db/rest/post/api_post.sql')
-rw-r--r--db/rest/post/api_post.sql25
1 files changed, 0 insertions, 25 deletions
diff --git a/db/rest/post/api_post.sql b/db/rest/post/api_post.sql
deleted file mode 100644
index 375f292..0000000
--- a/db/rest/post/api_post.sql
+++ /dev/null
@@ -1,25 +0,0 @@
-CREATE VIEW api.post AS
- SELECT
- p.id,
- p.user_id,
- p.content,
- p.date,
- COALESCE(c.cc, 0)
- AS comment_count
- FROM
- admin.post p
- LEFT JOIN (
- SELECT
- COUNT(c.id) as cc,
- c.post_id
- FROM
- admin.comment c
- GROUP BY
- c.post_id
- ) c ON p.id = c.post_id
- ORDER BY p.id DESC;
-
-GRANT SELECT ON TABLE api.post
- TO rest_anon, rest_user;
-GRANT SELECT ON TABLE admin.post
- TO rest_anon, rest_user;