Difference between revisions of "Database Table: captcha session"

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

Revision as of 14:00, 2 October 2009

Definition

CREATE TABLE captcha_session (
    sess CHAR(20) NOT NULL DEFAULT '',
    sesstime INT(10) UNSIGNED NOT NULL DEFAULT '0',
    lastcapid INT(11) DEFAULT NULL,
    trynum SMALLINT(6) DEFAULT '0',
    PRIMARY KEY  (`sess`),
    KEY sesstime (`sesstime`)
)

Relationships

Foreign key lastcapid to captchas.capid

Location

Clustered database