]> git.donarmstrong.com Git - infobot.git/blob - setup/sqlite2/uptime.sql
major re-organisation of the different SQL files; cleanup and fixing of the postgres...
[infobot.git] / setup / sqlite2 / uptime.sql
1 CREATE TABLE uptime (
2  uptime INT UNSIGNED DEFAULT '0', # start.
3  endtime INT UNSIGNED DEFAULT '0', # end.
4  string VARCHAR(128) NOT NULL,
5  PRIMARY KEY (uptime)
6 );