presentation-rust-webapps/simple_text_board/src/schema.rs

12 lines
221 B
XML

table! {
posts (id) {
id -> Integer,
parent -> Nullable<Integer>,
timestamp -> Timestamp,
author -> Text,
email -> Text,
title -> Text,
content -> Text,
}
}