Difference between revisions of "Database Table: captchas"

From Dreamwidth Notes
Jump to: navigation, search
m
m (Robot: Changing Category:Database Tables)
Line 23: Line 23:
 
[[Global database]]
 
[[Global database]]
  
[[Category: Database Tables|captchas]]
+
[[Category:Database Tables Needing Conversion|captchas]]

Revision as of 14:00, 2 October 2009

Definition

CREATE TABLE captchas (
    capid       INT UNSIGNED NOT NULL AUTO_INCREMENT,
    TYPE        enum('image','audio'),
    issuetime   INT UNSIGNED NOT NULL DEFAULT 0,
    answer      CHAR(10),
    userid      INT UNSIGNED NOT NULL DEFAULT 0,
    anum        SMALLINT UNSIGNED NOT NULL,
    INDEX(TYPE,issuetime),
    INDEX(userid),
    PRIMARY KEY(capid)
)

Relationships

Foreign key userid to user.userid

Location

Global database