~starkingdoms/starkingdoms

ref: 45388bdd8f53cc14d79b50adc0c517b4cfd9b996 starkingdoms/starkingdoms-api/src/schema.rs -rw-r--r-- 433 bytes
45388bdd — core split into multiple pipelines 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,);