@@ -4,7 +4,7 @@ DROP TABLE IF EXISTS `glpi_plugin_timelineticket_states`;
44CREATE TABLE `glpi_plugin_timelineticket_states ` (
55 ` id` int (11 ) NOT NULL AUTO_INCREMENT,
66 ` tickets_id` int (11 ) NOT NULL DEFAULT ' 0' ,
7- ` date` timestamp DEFAULT NULL ,
7+ ` date` timestamp NULL DEFAULT NULL ,
88 ` old_status` varchar (255 ) DEFAULT NULL ,
99 ` new_status` varchar (255 ) DEFAULT NULL ,
1010 ` delay` int (11 ) DEFAULT NULL ,
@@ -19,7 +19,7 @@ DROP TABLE IF EXISTS `glpi_plugin_timelineticket_assigngroups`;
1919CREATE TABLE `glpi_plugin_timelineticket_assigngroups ` (
2020 ` id` int (11 ) NOT NULL AUTO_INCREMENT,
2121 ` tickets_id` int (11 ) NOT NULL DEFAULT ' 0' ,
22- ` date` timestamp DEFAULT NULL ,
22+ ` date` timestamp NULL DEFAULT NULL ,
2323 ` groups_id` varchar (255 ) DEFAULT NULL ,
2424 ` begin` int (11 ) DEFAULT NULL ,
2525 ` delay` int (11 ) DEFAULT NULL ,
@@ -34,7 +34,7 @@ DROP TABLE IF EXISTS `glpi_plugin_timelineticket_assignusers`;
3434CREATE TABLE `glpi_plugin_timelineticket_assignusers ` (
3535 ` id` int (11 ) NOT NULL AUTO_INCREMENT,
3636 ` tickets_id` int (11 ) NOT NULL DEFAULT ' 0' ,
37- ` date` timestamp DEFAULT NULL ,
37+ ` date` timestamp NULL DEFAULT NULL ,
3838 ` users_id` varchar (255 ) DEFAULT NULL ,
3939 ` begin` int (11 ) DEFAULT NULL ,
4040 ` delay` int (11 ) DEFAULT NULL ,
0 commit comments