All checks were successful
Build and push image / deploy (push) Successful in 2m15s
10 lines
215 B
SQL
10 lines
215 B
SQL
-- +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
|