mirror of
https://github.com/azerothcore/mod-anticheat.git
synced 2026-01-15 18:00:29 +00:00
7 lines
313 B
SQL
7 lines
313 B
SQL
-- run on character db
|
|
ALTER TABLE `daily_players_reports`
|
|
ADD COLUMN `no_fall_damage_reports` BIGINT UNSIGNED NOT NULL DEFAULT 0 AFTER `antiknockback_reports`;
|
|
|
|
ALTER TABLE `players_reports_status`
|
|
ADD COLUMN `no_fall_damage_reports` BIGINT UNSIGNED NOT NULL DEFAULT 0 AFTER `antiknockback_reports`;
|