dsync 0.0.15

Generate rust structs & query functions from diesel schema files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
diesel::table! {
    todos (id) {
        id -> Int4,
        unsigned -> Unsigned<Integer>,
        text -> Text,
        completed -> Bool,
        #[sql_name = "type"]
        #[max_length = 255]
        type_ -> Varchar,
        created_at -> Timestamptz,
        updated_at -> Timestamptz,
    }
}