Files
aowow/setup/sql/updates/1762700147_01.sql
Sarjuuk a135dfce90 Profiler/Completions
* add keyed col `exalted` to reputation completions table to speed up lookups
2025-11-09 19:05:33 +01:00

5 lines
190 B
SQL

ALTER TABLE aowow_profiler_completion_reputation
ADD COLUMN `exalted` tinyint(1) GENERATED ALWAYS AS (`standing` >= 42000) STORED AFTER `standing`,
ADD KEY idx_exalted (`exalted`)
;