38 lines
610 B
Rust
38 lines
610 B
Rust
table! {
|
|
clicks (id) {
|
|
id -> Integer,
|
|
link -> Integer,
|
|
created_at -> Timestamp,
|
|
}
|
|
}
|
|
|
|
table! {
|
|
links (id) {
|
|
id -> Integer,
|
|
title -> Text,
|
|
target -> Text,
|
|
code -> Text,
|
|
author -> Integer,
|
|
created_at -> Timestamp,
|
|
}
|
|
}
|
|
|
|
table! {
|
|
users (id) {
|
|
id -> Integer,
|
|
username -> Text,
|
|
email -> Text,
|
|
password -> Text,
|
|
role -> Integer,
|
|
}
|
|
}
|
|
|
|
joinable!(clicks -> links (link));
|
|
joinable!(links -> users (author));
|
|
|
|
allow_tables_to_appear_in_same_query!(
|
|
clicks,
|
|
links,
|
|
users,
|
|
);
|