Database Table: import_data

From Dreamwidth Notes
Revision as of 12:35, 27 January 2010 by Exor674 (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

"{{{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_data (
    userid INT UNSIGNED NOT NULL,
    import_data_id INT UNSIGNED NOT NULL,
    hostname VARCHAR(255),
    username VARCHAR(255),
    usejournal VARCHAR(255),
    password_md5 VARCHAR(255),
    groupmap BLOB,
 
    PRIMARY KEY (userid, import_data_id),
    INDEX (import_data_id)
)

Relationships