Login   Register  
PHP Classes
elePHPant
Icontem

File: schema.sql

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2002-02-07 14:57
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)
);