00d44256b4
Rebrand all 17 sub-extensions from mokowaas to mokosuite naming, including component, plugins, modules, task plugins, and webservices. Updates package manifest, workflows, docs, wiki, and issue templates. Adds new plg_system_mokosuite_license extension.
14 lines
470 B
SQL
14 lines
470 B
SQL
CREATE TABLE IF NOT EXISTS `#__mokosuite_waf_log` (
|
|
`id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
|
|
`ip` VARCHAR(45) NOT NULL,
|
|
`uri` VARCHAR(2048) NOT NULL DEFAULT '',
|
|
`rule` VARCHAR(50) NOT NULL,
|
|
`detail` VARCHAR(512) NOT NULL DEFAULT '',
|
|
`user_agent` VARCHAR(512) NOT NULL DEFAULT '',
|
|
`created` DATETIME NOT NULL,
|
|
PRIMARY KEY (`id`),
|
|
KEY `idx_ip` (`ip`),
|
|
KEY `idx_rule` (`rule`),
|
|
KEY `idx_created` (`created`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|