mirror of
https://github.com/actix/examples
synced 2024-12-04 02:32:12 +01:00
21 lines
316 B
Rust
21 lines
316 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,
|
||
|
);
|