mirror of
https://github.com/pressly/goose.git
synced 2025-05-31 11:42:04 +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
|