mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Core/Warden: Base implementation for Warden functionality
Note: The default config file action for clients failing the checks can be changed for each check via the characters.warden_action table Credits to TOM_RUS
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
DROP TABLE IF EXISTS `warden_action`;
|
||||
|
||||
CREATE TABLE `warden_action` (
|
||||
`wardenId` smallint(5) unsigned NOT NULL,
|
||||
`action` tinyint(3) unsigned DEFAULT NULL,
|
||||
PRIMARY KEY (`wardenId`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8
|
||||
Reference in New Issue
Block a user