Posted by Shiny on March 31, 2006 at 11:28am
Jump to:
| Project: | Taxonomy assoc |
| Version: | 4.6.x-1.x-dev |
| Component: | Code |
| Category: | feature request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | needs review |
Issue Summary
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
#1