9 lines
129 B
Rust
9 lines
129 B
Rust
|
table! {
|
||
|
posts (id) {
|
||
|
id -> Int4,
|
||
|
title -> Varchar,
|
||
|
body -> Text,
|
||
|
published -> Bool,
|
||
|
}
|
||
|
}
|