mysql compatibility

This commit is contained in:
Dawid Bepierszcz
2024-08-12 09:55:52 +02:00
parent af46f0bca1
commit f95581e7c0

View File

@@ -6,8 +6,8 @@ CREATE TABLE IF NOT EXISTS `sa_warns` (
`admin_name` varchar(128) NOT NULL,
`reason` varchar(255) NOT NULL,
`duration` int(11) NOT NULL,
`ends` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
`created` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`ends` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`server_id` int(11) DEFAULT NULL,
`status` enum('ACTIVE','EXPIRED','') NOT NULL DEFAULT 'ACTIVE',
PRIMARY KEY (`id`)