planetwars.dev/planetwars-server/migrations/2021-12-18-130837_bots/up.sql
2022-02-27 21:47:29 +01:00

12 lines
305 B
SQL

CREATE TABLE bots (
id serial PRIMARY KEY,
owner_id integer REFERENCES users(id),
name text UNIQUE NOT NULL
);
CREATE TABLE code_bundles (
id serial PRIMARY KEY,
bot_id integer REFERENCES bots(id),
path text NOT NULL,
created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
);