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