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, needs desc)
Line 1: Line 1:
{{Database Table|name=import_usermap|table type=global}}
+
{{Database Table|name=import_usermap|table type=global|need desc=1}}
[[Category:Database Tables Needing Description]]
+
 
= Definition =
 
= Definition =
 
<source lang="sql">
 
<source lang="sql">

Revision as of 07:03, 28 January 2010

"{{{repo}}}" is not in the list of possible values (dw-free, dw-nonfree) for this property. 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