Difference between revisions of "Database Table: navtag"

From Dreamwidth Notes
Jump to: navigation, search
(Robot: Updating: Format)
m (Robot: Updating: Format, flag dropped)
 
Line 1: Line 1:
{{Database Table|name=navtag|table type=global|need desc=1|repo=dw-free}}
+
{{Database Table|name=navtag|table type=global|need desc=1|needs work=dropped|repo=dw-free}}
 
= Definition =
 
= Definition =
 
<source lang="sql">
 
<source lang="sql">

Latest revision as of 16:58, 29 July 2013

This is a global table.This database table is flagged as needing checking for the reason: dropped

Definition

CREATE TABLE navtag (
    tag       VARCHAR(128) BINARY NOT NULL,
    dest_type VARCHAR(20)  NOT NULL,
    dest      VARCHAR(255) NOT NULL,
 
    PRIMARY KEY (tag, dest_type, dest)
)

Relationships