Difference between revisions of "Database Table: noderefs"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'noderefs =Definition= <source lang="sql"> CREATE TABLE noderefs ( nodetype char(1) NOT NULL default '', nodeid int(10) unsigned NOT NULL default ...')
 
m
Line 1: Line 1:
[[Category: Database Table|noderefs]]
+
 
=Definition=
+
= Definition =
 +
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE noderefs (
 
CREATE TABLE noderefs (
Line 11: Line 12:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
 +
 
 +
= Location =
  
=Location=
 
 
[[Global database]]
 
[[Global database]]
 +
 +
[[Category: Database Tables|noderefs]]

Revision as of 20:13, 31 March 2009

Definition

CREATE TABLE noderefs (
  nodetype CHAR(1) NOT NULL DEFAULT '',
  nodeid INT(10) UNSIGNED NOT NULL DEFAULT '0',
  urlmd5 VARCHAR(32) NOT NULL DEFAULT '',
  url VARCHAR(120) NOT NULL DEFAULT '',
  PRIMARY KEY  (nodetype,nodeid,urlmd5)
)

Relationships

Location

Global database