From 3111fa073576aeb6278eff701f1b3e0f9a89ba9a Mon Sep 17 00:00:00 2001 From: Kitaiti Makoto Date: Mon, 9 Jan 2023 16:19:30 +0900 Subject: [PATCH] Run migration --- plume-models/src/schema.rs | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/plume-models/src/schema.rs b/plume-models/src/schema.rs index 70be8419..52a2d80e 100644 --- a/plume-models/src/schema.rs +++ b/plume-models/src/schema.rs @@ -51,6 +51,14 @@ table! { } } +table! { + comment_seers (id) { + id -> Int4, + comment_id -> Int4, + user_id -> Int4, + } +} + table! { comments (id) { id -> Int4, @@ -66,14 +74,6 @@ table! { } } -table! { - comment_seers (id) { - id -> Int4, - comment_id -> Int4, - user_id -> Int4, - } -} - table! { email_blocklist (id) { id -> Int4, @@ -314,8 +314,8 @@ allow_tables_to_appear_in_same_query!( apps, blog_authors, blogs, - comments, comment_seers, + comments, email_blocklist, email_signups, follows,