goose/internal/testing/integration/testdata/migrations/postgres/00005_no_tx.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;