rebase on oct-10-2023
This commit is contained in:
@@ -18,6 +18,15 @@ class wfSchema {
|
||||
);
|
||||
|
||||
private static $tables = array(
|
||||
"wfSecurityEvents" => "(
|
||||
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`type` varchar(255) NOT NULL DEFAULT '',
|
||||
`data` text NOT NULL,
|
||||
`event_time` double(14,4) NOT NULL,
|
||||
`state` enum('new','sending','sent') NOT NULL DEFAULT 'new',
|
||||
`state_timestamp` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
|
||||
PRIMARY KEY (`id`)
|
||||
) DEFAULT CHARSET=utf8",
|
||||
"wfBlocks7" => "(
|
||||
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`type` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
|
||||
Reference in New Issue
Block a user