Boost Azure Demo

This commit is contained in:
MangoPig
2026-05-25 17:05:06 +01:00
parent 675285e99d
commit 4f79137d89
230 changed files with 43275 additions and 2644 deletions

View 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;