add index on goods id_c
All checks were successful
Build and push image / deploy (push) Successful in 1m43s

This commit is contained in:
2023-12-27 19:00:16 +03:00
parent caac243792
commit 2bafbc3466

View File

@ -0,0 +1,9 @@
-- +goose Up
-- +goose StatementBegin
CREATE INDEX goods_id_c_idx ON goods (id_c);
-- +goose StatementEnd
-- +goose Down
-- +goose StatementBegin
DROP INDEX goods_id_c_idx;
-- +goose StatementEnd