aboutsummaryrefslogtreecommitdiff
path: root/planetwars-server/migrations/2021-12-18-130837_bots/up.sql
diff options
context:
space:
mode:
Diffstat (limited to 'planetwars-server/migrations/2021-12-18-130837_bots/up.sql')
-rw-r--r--planetwars-server/migrations/2021-12-18-130837_bots/up.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/planetwars-server/migrations/2021-12-18-130837_bots/up.sql b/planetwars-server/migrations/2021-12-18-130837_bots/up.sql
index 27f3582..22e250b 100644
--- a/planetwars-server/migrations/2021-12-18-130837_bots/up.sql
+++ b/planetwars-server/migrations/2021-12-18-130837_bots/up.sql
@@ -1,6 +1,6 @@
CREATE TABLE bots (
id serial PRIMARY KEY,
- owner_id integer REFERENCES users(id) NOT NULL,
+ owner_id integer REFERENCES users(id),
name text NOT NULL
);