filite/src/schema.rs

27 lines
423 B
Rust
Raw Permalink Normal View History

2019-10-07 21:43:34 +00:00
table! {
files (id) {
id -> Integer,
filepath -> Text,
created -> Integer,
}
}
table! {
links (id) {
id -> Integer,
forward -> Text,
created -> Integer,
}
}
table! {
texts (id) {
id -> Integer,
contents -> Text,
created -> Integer,
2020-01-15 06:50:54 +00:00
highlight -> Bool,
2019-10-07 21:43:34 +00:00
}
}
allow_tables_to_appear_in_same_query!(files, links, texts,);