⚙️How to set it up
Before you start drying, you should pay attention to what is written here and do it.
ensure [yourcore]
ensure wais-compatibility
#ensure other-wais-scripts
ensure wais-evidenceCREATE TABLE IF NOT EXISTS `wais_evidence` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`job` varchar(15) DEFAULT NULL,
`evidence_id` varchar(15) DEFAULT NULL,
`details` longtext DEFAULT NULL,
`time` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;Last updated