Difference between revisions of "Database Table: notifyqueue"
From Dreamwidth Notes
(Created page with 'notifyqueue =Definition= <source lang="sql"> CREATE TABLE notifyqueue ( userid INT UNSIGNED NOT NULL, qid INT UNSIGNED NOT NULL, jou...') |
Dreamnestia (Talk | contribs) |
||
Line 1: | Line 1: | ||
− | + | = Definition = | |
− | =Definition= | + | |
<source lang="sql"> | <source lang="sql"> | ||
CREATE TABLE notifyqueue ( | CREATE TABLE notifyqueue ( | ||
Line 16: | Line 16: | ||
</source> | </source> | ||
− | =Relationships= | + | = Relationships = |
+ | |||
+ | = Location = | ||
− | |||
[[Clustered database]] | [[Clustered database]] | ||
+ | |||
+ | [[Category: Database Tables|notifyqueue]] |
Revision as of 16:17, 31 March 2009
Definition
CREATE TABLE notifyqueue ( userid INT UNSIGNED NOT NULL, qid INT UNSIGNED NOT NULL, journalid INT UNSIGNED NOT NULL, etypeid SMALLINT UNSIGNED NOT NULL, arg1 INT UNSIGNED, arg2 INT UNSIGNED, state CHAR(1) NOT NULL DEFAULT 'N', createtime INT UNSIGNED NOT NULL, PRIMARY KEY (userid, qid), INDEX (state) )