summaryrefslogtreecommitdiff
path: root/src/schema.rs
blob: 71abe49982850df82458c170575df73843e6a920 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
table! {
    masses (id) {
        id -> Nullable<Integer>,
        name -> Varchar,
        pos_x -> Double,
        pos_y -> Double,
        pos_z -> Double,
        vel_x -> Double,
        vel_y -> Double,
        vel_z -> Double,
        type_data -> Jsonb,
    }
}