aboutsummaryrefslogtreecommitdiff
path: root/planetwars-server/src/schema.rs
diff options
context:
space:
mode:
authorIlion Beyst <ilion.beyst@gmail.com>2022-06-10 21:09:33 +0200
committerIlion Beyst <ilion.beyst@gmail.com>2022-06-10 21:09:33 +0200
commit5ee66c9c9b4156692c739a861c9cdbaf0c65aec8 (patch)
tree55c1ce0b99b26c6837304d72da772be6491882ff /planetwars-server/src/schema.rs
parentd1977b95c82f608bc558432cdfba8026aaf0648d (diff)
downloadplanetwars.dev-5ee66c9c9b4156692c739a861c9cdbaf0c65aec8.tar.xz
planetwars.dev-5ee66c9c9b4156692c739a861c9cdbaf0c65aec8.zip
allow match_player code_bundle_id to be null
Diffstat (limited to 'planetwars-server/src/schema.rs')
-rw-r--r--planetwars-server/src/schema.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/planetwars-server/src/schema.rs b/planetwars-server/src/schema.rs
index be3e858..92acc8e 100644
--- a/planetwars-server/src/schema.rs
+++ b/planetwars-server/src/schema.rs
@@ -31,7 +31,7 @@ table! {
match_players (match_id, player_id) {
match_id -> Int4,
player_id -> Int4,
- code_bundle_id -> Int4,
+ code_bundle_id -> Nullable<Int4>,
}
}