summaryrefslogtreecommitdiffstats
path: root/server/src/schema.rs
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/schema.rs')
-rw-r--r--server/src/schema.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/server/src/schema.rs b/server/src/schema.rs
index 28c4e8ca..93add9ba 100644
--- a/server/src/schema.rs
+++ b/server/src/schema.rs
@@ -14,6 +14,7 @@ table! {
comment_like (id) {
id -> Int4,
comment_id -> Int4,
+ post_id -> Int4,
fedi_user_id -> Text,
score -> Int2,
published -> Timestamp,
@@ -85,6 +86,7 @@ table! {
joinable!(comment -> post (post_id));
joinable!(comment_like -> comment (comment_id));
+joinable!(comment_like -> post (post_id));
joinable!(community_follower -> community (community_id));
joinable!(community_user -> community (community_id));
joinable!(post -> community (community_id));