mirror of
https://github.com/pressly/goose.git
synced 2025-05-31 11:42:04 +00:00
8 lines
155 B
SQL
8 lines
155 B
SQL
-- +goose NO TRANSACTION
|
|
|
|
-- +goose Up
|
|
CREATE UNIQUE INDEX CONCURRENTLY ON owners(owner_name);
|
|
|
|
-- +goose Down
|
|
DROP INDEX IF EXISTS owners_owner_name_idx;
|