feat: auto-assign strategy (round_robin/least_loaded/first_free); urgent tasks always use first_free

This commit is contained in:
2026-03-24 12:29:32 +03:00
parent 68e05895e3
commit 8b55bc58f1
5 changed files with 147 additions and 10 deletions

View File

@@ -0,0 +1,3 @@
ALTER TABLE housekeeping_settings
ADD COLUMN IF NOT EXISTS auto_assign BOOLEAN NOT NULL DEFAULT false,
ADD COLUMN IF NOT EXISTS auto_assign_strategy VARCHAR(20) NOT NULL DEFAULT 'least_loaded';