14 lines
337 B
SQL
14 lines
337 B
SQL
-- +goose Up
|
|
|
|
CREATE TYPE assignment_next_step_outcome AS ENUM ('redo', 'accept', 'support');
|
|
|
|
ALTER TABLE assignment_assignees
|
|
ADD COLUMN next_step_outcome assignment_next_step_outcome;
|
|
|
|
-- +goose Down
|
|
|
|
ALTER TABLE assignment_assignees
|
|
DROP COLUMN IF EXISTS next_step_outcome;
|
|
|
|
DROP TYPE IF EXISTS assignment_next_step_outcome;
|