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

10 lines
152 B
Rust
Raw Normal View History

2021-04-14 23:02:09 +02:00
table! {
posts (id) {
id -> Integer,
author -> Text,
email -> Text,
title -> Text,
content -> Text,
}
}