Archived
1
0
This repository has been archived on 2025-01-25. You can view files and clone it, but cannot push or open issues or pull requests.
Pslink/src/schema.rs
2021-02-04 15:07:55 +01:00

24 lines
411 B
Rust

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,
}
}
joinable!(links -> users (author));
allow_tables_to_appear_in_same_query!(links, users,);