Boost Azure Demo
This commit is contained in:
13
Backend/db/migrations/010_assignment_next_step_outcome.sql
Normal file
13
Backend/db/migrations/010_assignment_next_step_outcome.sql
Normal file
@@ -0,0 +1,13 @@
|
||||
-- +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;
|
||||
Reference in New Issue
Block a user