Needs review
Project:
Taxonomy assoc
Version:
4.6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
31 Mar 2006 at 11:28 UTC
Updated:
16 Jul 2006 at 04:45 UTC
The following has been tested in postgresql 7.4 and 8.0
CREATE TABLE taxonomy_assoc (
txnid SERIAL,
nid integer NOT NULL default 0,
tid integer NOT NULL default 0,
PRIMARY KEY (txnid)
);
CREATE INDEX txn_nid on taxonomy_assoc (nid);
CREATE INDEX txn_tid on taxonomy_assoc (tid);
Comments
Comment #1
Shiny commented