blob: 1ef1ec103372255fb389c867eadace1cc647da35 (
plain)
1
2
3
4
5
6
7
8
|
-- +goose Up
-- SQL in section 'Up' is executed when this migration is applied
ALTER TABLE users ADD CONSTRAINT op UNIQUE (type, op_id);
-- +goose Down
-- SQL section 'Down' is executed when this migration is rolled back
ALTER TABLE users DROP CONSTRAINT op;
|