create code bundle indices

This commit is contained in:
Ilion Beyst 2022-02-27 22:58:11 +01:00
parent edb3ead976
commit da3d7ed02d
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,5 @@
DROP INDEX code_bundles_bot_id_index;
DROP INDEX code_bundles_created_at_index;
DROP TABLE code_bundles;
DROP INDEX bots_index;
DROP TABLE bots;

View file

@ -9,4 +9,7 @@ CREATE TABLE code_bundles (
bot_id integer REFERENCES bots(id),
path text NOT NULL,
created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
);
);
CREATE INDEX code_bundles_bot_id_index ON code_bundles(bot_id);
CREATE INDEX code_bundles_created_at_index ON code_bundles(created_at);