Files
simple-rust-tests/__database/diesel/src/schema.rs

9 lines
139 B
Rust

table! {
posts (id) {
id -> Nullable<Integer>,
title -> Text,
body -> Text,
published -> Bool,
}
}