summaryrefslogtreecommitdiff
path: root/src/schema.rs
blob: f6ec1f7c9ac67d616064693e954efee81804e89b (plain)
1
2
3
4
5
6
7
8
table! {
    masses (id) {
        id -> Nullable<Integer>,
        name -> Varchar,
        mass -> Varchar,
        last_modified -> Timestamp,
    }
}