Database Table: externalaccount

From Dreamwidth Notes
Revision as of 12:34, 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 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