]> git.donarmstrong.com Git - infobot.git/blob - setup/sqlite2/uptime.sql
373902ad7d2aec7b4b5d866edf9a670103c58684
[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 );