mirror of
https://github.com/azerothcore/mod-anticheat.git
synced 2026-01-13 09:07:22 +00:00
7 lines
300 B
SQL
7 lines
300 B
SQL
-- run on Characters DB
|
|
ALTER TABLE `daily_players_reports`
|
|
ADD COLUMN `op_ack_hack_reports` BIGINT UNSIGNED NOT NULL DEFAULT 0 AFTER `no_fall_damage_reports`;
|
|
|
|
ALTER TABLE `players_reports_status`
|
|
ADD COLUMN `op_ack_hack_reports` BIGINT UNSIGNED NOT NULL DEFAULT 0 AFTER `no_fall_damage_reports`;
|