Database Table: captcha_cache
From Dreamwidth Notes
This is a global table.
Definition
CREATE TABLE captcha_cache ( `captcha_id` INT UNSIGNED NOT NULL AUTO_INCREMENT, `question` VARCHAR(255) NOT NULL, `answer` VARCHAR(255) NOT NULL, `issuetime` INT UNSIGNED NOT NULL DEFAULT 0, PRIMARY KEY (`captcha_id`), INDEX(`issuetime`) )