Difference between revisions of "Database Table: notifyqueue"

From Dreamwidth Notes
Jump to: navigation, search
m (Robot: Converting database table to use semantic mediawiki form.)
Line 1: Line 1:
 +
{{#set:name=notifyqueue|clustered=true}}
 
= Definition =
 
= Definition =
  
Line 16: Line 17:
 
</source>
 
</source>
  
= Relationships =
+
{{Database Table Footer}}
 
+
= Location =
+
 
+
[[Clustered database]]
+
 
+
[[Category: Database Tables|notifyqueue]]
+

Revision as of 13:16, 2 October 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)
)

Relationships