Database Table: navtag

From Dreamwidth Notes
Jump to: navigation, search

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