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…')
(No difference)

Revision as of 12:36, 27 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