Difference between revisions of "Database Table: urimap"

From Dreamwidth Notes
Jump to: navigation, search
(New page: Clustered. Stores data for mapping a named URI permalink - that is: http://somejournal.example.com/this_is_a_named_uri.html (not-yet-implemented), to the respective entry. [[Category: Unu...)
 
 
(8 intermediate revisions by 4 users not shown)
Line 1: Line 1:
Clustered. Stores data for mapping a named URI permalink - that is: http://somejournal.example.com/this_is_a_named_uri.html (not-yet-implemented), to the respective entry.
+
{{Database Table|name=urimap|table type=global|repo=dw-free|removed=1|removed in=2422fd729e2a}}
 
+
Stores data for mapping a named URI permalink - that is: http://somejournal.example.com/this_is_a_named_uri.html (not-yet-implemented), to the respective entry.
[[Category: Unused Database Tables|urimap]]
+
= Definition =
 +
<source lang="sql">
 +
CREATE TABLE urimap (
 +
  journalid  INTEGER UNSIGNED NOT NULL,
 +
  uri        VARCHAR(255) BINARY NOT NULL,
 +
  PRIMARY KEY (journalid, uri),
 +
  nodetype    CHAR(1) NOT NULL,
 +
  nodeid      INTEGER UNSIGNED NOT NULL,
 +
  INDEX      (journalid, nodetype, nodeid)
 +
)
 +
</source>
 +
{{Database Table Footer|removed=1}}

Latest revision as of 16:32, 22 July 2010

Note: This table is removed and no longer used. This table was removed in dw-free changeset 2422fd729e2a [1]
This is a global table. Stores data for mapping a named URI permalink - that is: http://somejournal.example.com/this_is_a_named_uri.html (not-yet-implemented), to the respective entry.

Definition

CREATE TABLE urimap (
  journalid   INTEGER UNSIGNED NOT NULL,
  uri         VARCHAR(255) BINARY NOT NULL,
  PRIMARY KEY (journalid, uri),
  nodetype    CHAR(1) NOT NULL,
  nodeid      INTEGER UNSIGNED NOT NULL,
  INDEX       (journalid, nodetype, nodeid)
)