/[drupal]/contributions/modules/ping_server/ping_server.mysql
ViewVC logotype

Contents of /contributions/modules/ping_server/ping_server.mysql

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (show annotations) (download)
Mon Oct 24 20:16:20 2005 UTC (4 years, 1 month ago) by breyten
Branch: MAIN
CVS Tags: HEAD
Branch point for: DRUPAL-4-6, DRUPAL-4-7
Initial import of ping_server module
1 CREATE TABLE ping_server (
2 name varchar(255) NOT NULL default '',
3 url varchar(255) NOT NULL default '',
4 changeurl varchar(255) NOT NULL default '',
5 created int(10) default NULL,
6 updated int(10) NOT NULL default '0',
7 etag varchar(255) default NULL,
8 modified int(10) default NULL,
9 checksum varchar(64) NOT NULL default '',
10 realm varchar(64) default NULL,
11 PRIMARY KEY (url),
12 KEY updated (updated),
13 KEY created (created),
14 KEY url (url)
15 ) TYPE=MyISAM;

  ViewVC Help
Powered by ViewVC 1.1.2