Difference between revisions of "Database Table: jabroster"

From Dreamwidth Notes
Jump to: navigation, search
(Robot: Updating: Format, needs desc, definition)
(Robot: Updating: Format)
 
Line 1: Line 1:
{{Database Table|name=jabroster|table type=clustered|need desc=1}}
+
{{Database Table|name=jabroster|table type=clustered|need desc=1|repo=dw-free}}
 
= Definition =
 
= Definition =
 
<source lang="sql">
 
<source lang="sql">

Latest revision as of 15:58, 22 July 2010

This is a clustered table.

Definition

CREATE TABLE jabroster (
    userid     INT UNSIGNED NOT NULL,
    contactid  INT UNSIGNED NOT NULL,
    PRIMARY KEY (userid, contactid),
    name       VARCHAR(255) BINARY,
    substate   TINYINT UNSIGNED NOT NULL,
    groups     VARCHAR(255) BINARY,
    ljflags    TINYINT UNSIGNED NOT NULL
)

Relationships