#
# Table definition for the class.wwwcheckup.php script
#
# Andrew Collington, 2002
# http://www.amnuts.com/ - andy@amnuts.com
#
CREATE TABLE websites (
id int(11) DEFAULT '0' NOT NULL auto_increment,
website varchar(255) NOT NULL,
hash varchar(255) NOT NULL,
lastchecked datetime DEFAULT '0000-00-00 00:00:00' NOT NULL,
lastupdated datetime DEFAULT '0000-00-00 00:00:00' NOT NULL,
PRIMARY KEY (id)
);
|