Some checks failed
Deploy Development / deploy (push) Successful in 47s
Test Suite / pytest-backend (push) Failing after 4m15s
Test Suite / k6 /api/health Baseline (push) Has been skipped
Test Suite / playwright-smoke (push) Has been skipped
Test Suite / lint-backend (push) Successful in 2s
Test Suite / compose-smoke (push) Has been skipped
K-Ext-4/P8 deklarative Agent-Slots; P7 tech_debt Read Model und Vokabular; Review-Attention in den Kernel verlagert. Co-authored-by: Cursor <cursoragent@cursor.com>
12 lines
534 B
SQL
12 lines
534 B
SQL
-- P7: Technische Schuld — item_kind / action_kind tech_debt
|
|
|
|
ALTER TABLE actions DROP CONSTRAINT IF EXISTS actions_action_kind_check;
|
|
ALTER TABLE actions
|
|
ADD CONSTRAINT actions_action_kind_check
|
|
CHECK (action_kind IN ('delivery', 'planning', 'review', 'bug', 'issue', 'tech_debt'));
|
|
|
|
ALTER TABLE backlog_items DROP CONSTRAINT IF EXISTS backlog_items_item_kind_check;
|
|
ALTER TABLE backlog_items
|
|
ADD CONSTRAINT backlog_items_item_kind_check
|
|
CHECK (item_kind IN ('story', 'bug', 'issue', 'epic', 'tech_debt'));
|