1
0
mirror of https://github.com/actix/examples synced 2025-01-22 22:05:57 +01:00
2022-09-10 23:33:09 +01:00

18 lines
301 B
Rust

table! {
users (email) {
email -> Varchar,
hash -> Varchar,
created_at -> Timestamp,
}
}
table! {
invitations (id) {
id -> Uuid,
email -> Varchar,
expires_at -> Timestamp,
}
}
allow_tables_to_appear_in_same_query!(users, invitations);