PHP Classes

File: schema.sql

Recommend this page to a friend!
  Classes of Andrew Collington   class.wwwcheckup.php   schema.sql   Download  
File: schema.sql
Role: Configuration script
Content type: text/plain
Description: The database table
Class: class.wwwcheckup.php
Author: By
Last change:
Date: 22 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/ - 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)
);