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

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

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 integer default '0',
3 weblink varchar(128) default NULL,
4 click integer default '0',
5 monitor smallint NOT NULL DEFAULT '0' ,
6 size text NOT NULL DEFAULT '' ,
7 change_stamp integer NOT NULL DEFAULT '0' ,
8 checked integer NOT NULL DEFAULT '0' ,
9 feed varchar(255) NOT NULL DEFAULT '' ,
10 refresh integer NOT NULL DEFAULT '0' ,
11 threshold integer NOT NULL DEFAULT '0' ,
12 spider_site smallint NOT NULL DEFAULT '0' ,
13 spider_url varchar(255) NOT NULL DEFAULT ''
14 );
15 CREATE INDEX weblink_nid_idx ON weblink(nid);
16 CREATE INDEX weblink_weblink_idx ON weblink(weblink);

  ViewVC Help
Powered by ViewVC 1.1.2