This commit is contained in:
sion
2026-04-05 23:37:38 +08:00
parent d3f2424d1a
commit 7c5b588306

View File

@@ -0,0 +1,4 @@
-- 看板性能优化:为 order_fund 添加组合索引
-- 用于聚合查询(充值/提现统计、月度趋势)
ALTER TABLE order_fund ADD INDEX idx_type_status (type, status);
ALTER TABLE order_fund ADD INDEX idx_type_status_time (type, status, create_time);