]> git.donarmstrong.com Git - infobot.git/blob - setup/uptime.sql
- new tables. not used as yet.
[infobot.git] / setup / uptime.sql
1 CREATE TABLE uptime (
2         uptime  INT UNSIGNED DEFAULT '0',       # start.
3         endtime INT UNSIGNED DEFAULT '0',       # end.
4
5         string  VARCHAR(128) NOT NULL,
6
7         PRIMARY KEY (uptime)
8 );