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

18 lines
301 B
Rust
Raw Normal View History

table! {
2022-09-10 23:33:09 +01:00
users (email) {
email -> Varchar,
2022-09-10 23:33:09 +01:00
hash -> Varchar,
created_at -> Timestamp,
}
}
table! {
2022-09-10 23:33:09 +01:00
invitations (id) {
id -> Uuid,
email -> Varchar,
2022-09-10 23:33:09 +01:00
expires_at -> Timestamp,
}
}
2022-09-10 23:33:09 +01:00
allow_tables_to_appear_in_same_query!(users, invitations);