crablog/src/schema.rs
2020-10-22 00:17:52 +02:00

9 lines
174 B
Rust

table! {
posts (id) {
id -> Nullable<Integer>,
title -> Text,
body -> Text,
published -> Bool,
publish_date -> Timestamp,
}
}