~starkingdoms/starkingdoms

ref: bab42846812a64e6cfc8b6287fa9b4aaf48be3b2 starkingdoms/starkingdoms-api/src/schema.rs -rw-r--r-- 433 bytes
bab42846 — core fmt 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// @generated automatically by Diesel CLI.

diesel::table! {
    savefiles (id) {
        id -> Int8,
        user_id -> Int8,
        save_data -> Jsonb,
    }
}

diesel::table! {
    users (id) {
        id -> Int8,
        username -> Varchar,
        password_hash -> Varchar,
        permission_level -> Int4,
        latest_savefile -> Nullable<Int8>,
    }
}

diesel::allow_tables_to_appear_in_same_query!(savefiles, users,);