/[drupal]/contributions/sandbox/adrian/modules/weblink.mysql
ViewVC logotype

Contents of /contributions/sandbox/adrian/modules/weblink.mysql

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


Revision 1.1 - (show annotations) (download)
Mon Nov 17 10:38:56 2003 UTC (6 years ago) by adrian
Branch: MAIN
CVS Tags: HEAD
Branch point for: drop
schema files for use with the weblinks module.

these will get moved to contrib in the next day or 2
1 CREATE TABLE weblink (
2 nid int(10) unsigned default '0',
3 weblink varchar(128) default NULL,
4 click int(10) unsigned default '0',
5 monitor int(1) NOT NULL DEFAULT '0' ,
6 size text NOT NULL DEFAULT '' ,
7 change_stamp int(11) NOT NULL DEFAULT '0' ,
8 checked int(11) NOT NULL DEFAULT '0' ,
9 feed varchar(255) NOT NULL DEFAULT '' ,
10 refresh int(11) NOT NULL DEFAULT '0' ,
11 threshold int(11) NOT NULL DEFAULT '0' ,
12 spider_site int(1) NOT NULL DEFAULT '0' ,
13 spider_url varchar(255) NOT NULL DEFAULT '',
14 );
15 ALTER TABLE weblink ADD INDEX (nid);
16 ALTER TABLE weblink ADD INDEX url (weblink);

  ViewVC Help
Powered by ViewVC 1.1.2