mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
5 lines
190 B
SQL
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`)
|
|
;
|