feat: add party-size queueing and call modes

This commit is contained in:
wangxuming
2026-07-16 11:40:34 +08:00
parent 7f751bebae
commit 66951b4dc3
53 changed files with 3348 additions and 533 deletions

View File

@@ -0,0 +1,6 @@
ALTER TABLE projects
ADD COLUMN experienced_people_start integer NOT NULL DEFAULT 0;
ALTER TABLE projects
ADD CONSTRAINT projects_experienced_people_start_check
CHECK (experienced_people_start BETWEEN 0 AND 1000000000);