Difference between revisions of "Database Table: cmdbuffer"

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

Revision as of 13:13, 2 October 2009

Definition

CREATE TABLE cmdbuffer (
  cbid INT UNSIGNED NOT NULL AUTO_INCREMENT,
  journalid INT UNSIGNED NOT NULL,
  cmd VARCHAR(30) NOT NULL DEFAULT '',
  instime datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  args TEXT NOT NULL,
  PRIMARY KEY  (cbid),
  KEY (cmd),
  KEY (journalid)
)

Relationships