Difference between revisions of "Database Table: import usermap"

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

Latest revision as of 15:56, 22 July 2010

This is a global table.

Definition

CREATE TABLE import_usermap (
    hostname VARCHAR(255),
    username VARCHAR(255),
    identity_userid INT UNSIGNED,
    feed_userid INT UNSIGNED,
 
    PRIMARY KEY (hostname, username),
    INDEX (identity_userid),
    INDEX (feed_userid)
)

Relationships