add index on goods created_at
All checks were successful
Build and push image / deploy (push) Successful in 2m15s

This commit is contained in:
2023-12-27 18:57:36 +03:00
parent c1e8c597bc
commit caac243792

View File

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