Difference between revisions of "Database Table: import data"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with '{{Database Table|name=import_data|table type=global}} Category:Database Tables Needing Description = Definition = <source lang="sql"> CREATE TABLE import_data ( userid IN…')
 
(Robot: Updating: Format, needs desc)
Line 1: Line 1:
{{Database Table|name=import_data|table type=global}}
+
{{Database Table|name=import_data|table type=global|need desc=1}}
[[Category:Database Tables Needing Description]]
+
 
= Definition =
 
= Definition =
 
<source lang="sql">
 
<source lang="sql">

Revision as of 07:09, 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_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