From 192c7677c35965fde8dac12c99d3e5c06ecd3223 Mon Sep 17 00:00:00 2001 From: Kitaiti Makoto Date: Tue, 4 Jan 2022 22:03:47 +0900 Subject: [PATCH] Run migration % diesel migration run --- plume-models/src/schema.rs | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/plume-models/src/schema.rs b/plume-models/src/schema.rs index dc6d77fd..db492a08 100644 --- a/plume-models/src/schema.rs +++ b/plume-models/src/schema.rs @@ -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,