1
0
mirror of https://github.com/actix/examples synced 2025-02-02 17:39:05 +01:00

18 lines
306 B
Rust
Raw Normal View History

table! {
invitations (id) {
id -> Uuid,
email -> Varchar,
expires_at -> Timestamp,
}
}
table! {
users (email) {
email -> Varchar,
password -> Varchar,
created_at -> Timestamp,
}
}
2019-03-09 18:03:09 -08:00
allow_tables_to_appear_in_same_query!(invitations, users,);