sqlite_wasm_example/
schema.rs

1// @generated automatically by Diesel CLI.
2
3diesel::table! {
4    posts (id) {
5        id -> Integer,
6        title -> Text,
7        body -> Text,
8        published -> Bool,
9    }
10}