Xboard/database
xboard 4cdf5f688d feat(database): add single column indexes for performance optimization
- Add individual indexes for v2_user table (t, online_count, created_at)
- Add individual indexes for v2_order table (created_at, status, total_amount, commission fields)
- Add individual indexes for v2_stat_server table (server_id, record_at, u, d)
- Add individual indexes for v2_stat_user table (u, d)
- Add individual indexes for v2_commission_log table (created_at, get_amount)
- Add individual indexes for v2_ticket table (status, created_at)

This change improves query flexibility and maintainability by using single column indexes
instead of composite indexes. Each field can now be queried independently with optimal
performance.
2025-01-16 00:24:13 +08:00
..
factories Initial commit 2023-11-17 14:44:01 +08:00
migrations feat(database): add single column indexes for performance optimization 2025-01-16 00:24:13 +08:00
seeders Initial commit 2023-11-17 14:44:01 +08:00
.gitignore Initial commit 2023-11-17 14:44:01 +08:00