8 lines
286 B
MySQL
8 lines
286 B
MySQL
|
CREATE TABLE IF NOT EXISTS `maintenance` (
|
||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
|
`mode` int(11) NOT NULL,
|
||
|
`message` int(11) NOT NULL,
|
||
|
`countMaintenance` int(11) NOT NULL,
|
||
|
`dateEven` datetime NOT NULL,
|
||
|
PRIMARY KEY (`id`)
|
||
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1
|