Difference between revisions of "Database Table: externalaccount"

From Dreamwidth Notes
Jump to: navigation, search
(Robot: Updating: Format, needs desc)
Line 1: Line 1:
{{Database Table|name=externalaccount|table type=clustered}}
+
{{Database Table|name=externalaccount|table type=clustered|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 clustered table.

Definition

CREATE TABLE externalaccount (
    userid INT UNSIGNED NOT NULL,
    acctid INT UNSIGNED NOT NULL,
    username VARCHAR(64) NOT NULL,
    password VARCHAR(64),
    siteid INT UNSIGNED,
    servicename VARCHAR(128),
    servicetype VARCHAR(32),
    serviceurl VARCHAR(128),
    xpostbydefault enum('1','0') NOT NULL DEFAULT '0',
    PRIMARY KEY (userid, acctid),
    INDEX (userid)
)

Relationships