1 CREATE TABLE IF NOT EXISTS recurring_downtime (
2 id int(11) NOT NULL auto_increment,
3 author varchar(255) NOT NULL,
4 downtime_type varchar(255) NOT NULL,
6 last_update int(11) NOT NULL default '0',
9 KEY downtime_type (downtime_type)
10 ) COLLATE latin1_general_cs;