Difference between revisions of "Database Table: import usermap"

From Dreamwidth Notes
Jump to: navigation, search
m (Created page with '{{Database Table|name=import_usermap|table type=global}} Category:Database Tables Needing Description = Definition = <source lang="sql"> CREATE TABLE import_usermap ( hos…')
 
(Robot: Updating: Format)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
{{Database Table|name=import_usermap|table type=global}}
+
{{Database Table|name=import_usermap|table type=global|need desc=1|repo=dw-free}}
[[Category:Database Tables Needing Description]]
+
 
= 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