mirror of
https://github.com/pressly/goose.git
synced 2025-07-10 20:48:35 +00:00
11 lines
210 B
SQL
11 lines
210 B
SQL
|
|
-- +goose Up
|
|
-- +goose StatementBegin
|
|
CREATE INDEX ON public.users (user_id);
|
|
-- +goose StatementEnd
|
|
|
|
-- +goose Down
|
|
-- +goose StatementBegin
|
|
DROP INDEX IF EXISTS users_user_id_idx;
|
|
-- +goose StatementEnd
|