diff options
Diffstat (limited to 'planetwars-server/src/schema.rs')
-rw-r--r-- | planetwars-server/src/schema.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/planetwars-server/src/schema.rs b/planetwars-server/src/schema.rs index 5e74e85..e67ef3a 100644 --- a/planetwars-server/src/schema.rs +++ b/planetwars-server/src/schema.rs @@ -7,7 +7,7 @@ table! { bots (id) { id -> Int4, - owner_id -> Int4, + owner_id -> Nullable<Int4>, name -> Text, } } |