mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-05 19:59:30 +00:00
Run migration
% diesel migration run
This commit is contained in:
parent
2a31a7b601
commit
192c7677c3
1 changed files with 11 additions and 0 deletions
|
@ -73,6 +73,7 @@ table! {
|
|||
user_id -> Int4,
|
||||
}
|
||||
}
|
||||
|
||||
table! {
|
||||
email_blocklist(id){
|
||||
id -> Int4,
|
||||
|
@ -83,6 +84,15 @@ table! {
|
|||
}
|
||||
}
|
||||
|
||||
table! {
|
||||
email_signups (id) {
|
||||
id -> Int4,
|
||||
email -> Varchar,
|
||||
token -> Varchar,
|
||||
expiration_date -> Timestamp,
|
||||
}
|
||||
}
|
||||
|
||||
table! {
|
||||
follows (id) {
|
||||
id -> Int4,
|
||||
|
@ -306,6 +316,7 @@ allow_tables_to_appear_in_same_query!(
|
|||
blogs,
|
||||
comments,
|
||||
comment_seers,
|
||||
email_signups,
|
||||
follows,
|
||||
instances,
|
||||
likes,
|
||||
|
|
Loading…
Reference in a new issue