presentation-rust-webapps/simpler_text_board/src/schema.rs
2021-04-14 23:02:09 +02:00

10 lines
152 B
XML

table! {
posts (id) {
id -> Integer,
author -> Text,
email -> Text,
title -> Text,
content -> Text,
}
}