Merge branch 'maint/7.0'
[ninja.git] / sql / mysql / recurring_downtime.sql
blob844b8e898945738974ab7926c1cfe94e939b92fc
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,
5  data text NOT NULL,
6  last_update int(11) NOT NULL default '0',
7  PRIMARY KEY  (id),
8  KEY author (author),
9  KEY downtime_type (downtime_type)
10 ) COLLATE latin1_general_cs;