codigocomentado/src/schema.rs

11 lines
198 B
Rust

table! {
posts (id) {
id -> Int4,
title -> Varchar,
content -> Text,
published -> Bool,
created_at -> Timestamp,
updated_at -> Timestamp,
}
}