diff options
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.sql | 2 |
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 ); |