This repository has been archived on 2024-07-25. You can view files and clone it, but cannot push or open issues or pull requests.
enve/examples/diesel/schema.rs

9 lines
129 B
Rust
Raw Normal View History

2019-12-29 01:11:34 +03:00
table! {
posts (id) {
id -> Int4,
title -> Varchar,
body -> Text,
published -> Bool,
}
}