Difference between revisions of "Database Table: import data"

From Dreamwidth Notes
Jump to: navigation, search
(Robot: Updating: Format, needs desc)
(Robot: Updating: Format)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
{{Database Table|name=import_data|table type=global|need desc=1}}
+
{{Database Table|name=import_data|table type=global|need desc=1|repo=dw-free}}
 
= Definition =
 
= Definition =
 
<source lang="sql">
 
<source lang="sql">
Line 10: Line 10:
 
     password_md5 VARCHAR(255),
 
     password_md5 VARCHAR(255),
 
     groupmap BLOB,
 
     groupmap BLOB,
 +
    options BLOB,
  
 
     PRIMARY KEY (userid, import_data_id),
 
     PRIMARY KEY (userid, import_data_id),

Latest revision as of 16:03, 22 July 2010

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,
    options BLOB,
 
    PRIMARY KEY (userid, import_data_id),
    INDEX (import_data_id)
)

Relationships