PHP Classes

File: SQL File

Recommend this page to a friend!
  Classes of Andrew Collington   class.wwwcheckup.php   ???   Download  
File: ???
Role: Configuration script
Content type: text/plain
Description: The database table
Class: class.wwwcheckup.php
Author: By
Last change:
Date: 23 years ago
Size: 439 bytes
 

Contents

Class file image Download
#
# Table definition for the class.wwwcheckup.php script
#
# Andrew Collington, 2002
# http://www.amnuts.com/ - [email protected]
#

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)
);