2021-12-19 00:16:46 +01:00
|
|
|
CREATE TABLE bots (
|
|
|
|
id serial PRIMARY KEY,
|
2022-02-26 23:07:13 +01:00
|
|
|
owner_id integer REFERENCES users(id),
|
2022-02-27 21:47:17 +01:00
|
|
|
name text UNIQUE NOT NULL
|
2021-12-19 00:16:46 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
CREATE TABLE code_bundles (
|
|
|
|
id serial PRIMARY KEY,
|
2022-02-27 20:35:22 +01:00
|
|
|
bot_id integer REFERENCES bots(id),
|
2021-12-19 00:16:46 +01:00
|
|
|
path text NOT NULL,
|
|
|
|
created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
|
2022-02-27 22:58:11 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
CREATE INDEX code_bundles_bot_id_index ON code_bundles(bot_id);
|
|
|
|
CREATE INDEX code_bundles_created_at_index ON code_bundles(created_at);
|