diff options
author | Ilion Beyst <ilion.beyst@gmail.com> | 2022-10-13 22:22:45 +0200 |
---|---|---|
committer | Ilion Beyst <ilion.beyst@gmail.com> | 2022-10-13 22:22:45 +0200 |
commit | eb2cbb15fbea6dd6f800598329cd5cc892090d7b (patch) | |
tree | 7768204300a54b0bc4e71f3bb3f82519e8aa3196 /planetwars-server/src/schema.rs | |
parent | 2278ecd2584050c28e62f0f5fd8967b81d64cc5b (diff) | |
download | planetwars.dev-eb2cbb15fbea6dd6f800598329cd5cc892090d7b.tar.xz planetwars.dev-eb2cbb15fbea6dd6f800598329cd5cc892090d7b.zip |
save matchplayer had_errors in database
Diffstat (limited to 'planetwars-server/src/schema.rs')
-rw-r--r-- | planetwars-server/src/schema.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/planetwars-server/src/schema.rs b/planetwars-server/src/schema.rs index 27ebebe..2c5ab2a 100644 --- a/planetwars-server/src/schema.rs +++ b/planetwars-server/src/schema.rs @@ -53,6 +53,7 @@ diesel::table! { match_id -> Int4, player_id -> Int4, bot_version_id -> Nullable<Int4>, + had_errors -> Nullable<Bool>, } } |