mirror of
https://github.com/actix/examples
synced 2025-01-23 06:14:35 +01:00
18 lines
306 B
Rust
18 lines
306 B
Rust
table! {
|
|
invitations (id) {
|
|
id -> Uuid,
|
|
email -> Varchar,
|
|
expires_at -> Timestamp,
|
|
}
|
|
}
|
|
|
|
table! {
|
|
users (email) {
|
|
email -> Varchar,
|
|
password -> Varchar,
|
|
created_at -> Timestamp,
|
|
}
|
|
}
|
|
|
|
allow_tables_to_appear_in_same_query!(invitations, users,);
|