Integrates external readers to the rss feeds and the iCal calendars.
[platal.git] / upgrade / 0.9.13 / 06_mx_watch.sql
1 CREATE TABLE `mx_watch` (
2 `host` VARCHAR(64) NOT NULL,
3 `state` ENUM('ok', 'warning', 'broken') DEFAULT 'ok',
4 `text` MEDIUMTEXT NOT NULL,
5 PRIMARY KEY(`host`)
6 );
7
8 # vim:set syntax=mysql: