diff --git a/server/src/schema.rs b/server/src/schema.rs index 020daa0..09e4ead 100644 --- a/server/src/schema.rs +++ b/server/src/schema.rs @@ -17,6 +17,14 @@ table! { } } +table! { + sessions (id) { + id -> Unsigned, + secret -> Varchar, + expires -> Unsigned, + } +} + table! { users (id) { id -> Unsigned, @@ -30,5 +38,6 @@ table! { allow_tables_to_appear_in_same_query!( channels, invites, + sessions, users, );