captchas sql

This commit is contained in:
bs
2026-01-28 01:33:24 -08:00
parent 1be025aa22
commit dea409c066
2 changed files with 11 additions and 1 deletions
+10
View File
@@ -13,3 +13,13 @@ CREATE TABLE `contact_us_form_submissions`
`backend_email_sent` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
);
CREATE TABLE `captchas` (
`id` int(11) NOT NULL,
`session_id` varchar(255) NOT NULL,
`ip` varchar(255) NOT NULL,
`image` blob DEFAULT NULL,
`result` varchar(255) DEFAULT NULL,
`created` datetime DEFAULT NULL,
`used` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
);