planetwars.dev/planetwars-server/migrations/2021-12-18-130837_bots/up.sql

14 lines
355 B
MySQL
Raw Normal View History

2021-12-18 23:16:46 +00:00
CREATE TABLE bots (
id serial PRIMARY KEY,
2022-02-26 22:07:13 +00:00
owner_id integer REFERENCES users(id),
2021-12-18 23:16:46 +00:00
name text NOT NULL
);
CREATE UNIQUE INDEX bots_index ON bots(owner_id, name);
CREATE TABLE code_bundles (
id serial PRIMARY KEY,
bot_id integer REFERENCES bots(id),
2021-12-18 23:16:46 +00:00
path text NOT NULL,
created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
);