Merge pull request #3186 from jianjianai/fix/account-group-scheduler-indexes

优化账号分组调度索引 / Add two concurrent composite indexes
This commit is contained in:
Wesley Liddick
2026-06-10 09:58:31 +08:00
committed by GitHub
@@ -0,0 +1,5 @@
CREATE INDEX CONCURRENTLY IF NOT EXISTS idx_account_groups_group_priority_account
ON account_groups (group_id, priority, account_id);
CREATE INDEX CONCURRENTLY IF NOT EXISTS idx_account_groups_account_priority_group
ON account_groups (account_id, priority, group_id);