Difference between revisions of "Database Table: sysban"

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

Revision as of 13:22, 2 October 2009

Definition

CREATE TABLE sysban (
   banid     MEDIUMINT UNSIGNED NOT NULL AUTO_INCREMENT,
   PRIMARY KEY (banid),
   STATUS    ENUM('active','expired') NOT NULL DEFAULT 'active',
   INDEX     (STATUS),
   bandate   DATETIME,
   banuntil  DATETIME,
   what      VARCHAR(20) NOT NULL,
   VALUE     VARCHAR(80),
   note      VARCHAR(255)
)

Relationships