Difference between revisions of "Database Table: clustertrack2"
From Dreamwidth Notes
Exor674Bot (Talk | contribs) (Robot: Updating: Format, definition) |
Exor674Bot (Talk | contribs) (Robot: Updating: Format, definition) |
||
Line 9: | Line 9: | ||
clusterid SMALLINT UNSIGNED, | clusterid SMALLINT UNSIGNED, | ||
accountlevel SMALLINT UNSIGNED, | accountlevel SMALLINT UNSIGNED, | ||
+ | journaltype char(1), | ||
INDEX (timeactive, clusterid) | INDEX (timeactive, clusterid) |
Revision as of 01:16, 9 July 2010
"{{{repo}}}" is not in the list of possible values (dw-free, dw-nonfree) for this property. This is a clustered table. This table on each clustered database tracks users on that cluster.
Definition
CREATE TABLE clustertrack2 ( userid INT UNSIGNED NOT NULL, PRIMARY KEY (userid), timeactive INT UNSIGNED NOT NULL, clusterid SMALLINT UNSIGNED, accountlevel SMALLINT UNSIGNED, journaltype CHAR(1), INDEX (timeactive, clusterid) )
Relationships
Outgoing
- Foreign key: userid to user.userid