crablog/site/src/schema.rs

10 lines
174 B
Rust
Raw Normal View History

2020-10-22 00:17:52 +02:00
table! {
posts (id) {
id -> Nullable<Integer>,
title -> Text,
body -> Text,
published -> Bool,
publish_date -> Timestamp,
}
}