Run migration

% diesel migration run
This commit is contained in:
Kitaiti Makoto 2022-01-04 22:03:47 +09:00
parent 2a31a7b601
commit 192c7677c3

View File

@ -73,6 +73,7 @@ table! {
user_id -> Int4, user_id -> Int4,
} }
} }
table! { table! {
email_blocklist(id){ email_blocklist(id){
id -> Int4, id -> Int4,
@ -83,6 +84,15 @@ table! {
} }
} }
table! {
email_signups (id) {
id -> Int4,
email -> Varchar,
token -> Varchar,
expiration_date -> Timestamp,
}
}
table! { table! {
follows (id) { follows (id) {
id -> Int4, id -> Int4,
@ -306,6 +316,7 @@ allow_tables_to_appear_in_same_query!(
blogs, blogs,
comments, comments,
comment_seers, comment_seers,
email_signups,
follows, follows,
instances, instances,
likes, likes,