Run migration

This commit is contained in:
Kitaiti Makoto 2023-01-09 16:19:30 +09:00
parent 890c9a0da4
commit 3111fa0735

View File

@ -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,