captchas sql
Some checks failed
CI / testsuite (mysql, 8.2, ) (push) Successful in 13m24s
CI / testsuite (pgsql, 8.2, ) (push) Successful in 13m28s
CI / testsuite (mysql, 8.4, ) (push) Successful in 16m19s
CI / testsuite (sqlite, 8.2, ) (push) Successful in 13m4s
CI / testsuite (pgsql, 8.4, ) (push) Has started running
CI / testsuite (sqlite, 8.2, prefer-lowest) (push) Has started running
CI / testsuite (sqlite, 8.4, ) (push) Has started running
CI / Coding Standard & Static Analysis (push) Has been cancelled
Some checks failed
CI / testsuite (mysql, 8.2, ) (push) Successful in 13m24s
CI / testsuite (pgsql, 8.2, ) (push) Successful in 13m28s
CI / testsuite (mysql, 8.4, ) (push) Successful in 16m19s
CI / testsuite (sqlite, 8.2, ) (push) Successful in 13m4s
CI / testsuite (pgsql, 8.4, ) (push) Has started running
CI / testsuite (sqlite, 8.2, prefer-lowest) (push) Has started running
CI / testsuite (sqlite, 8.4, ) (push) Has started running
CI / Coding Standard & Static Analysis (push) Has been cancelled
This commit is contained in:
@@ -172,6 +172,6 @@ if (!defined('SECOND')) {
|
|||||||
// // Run app migrations on test connection.
|
// // Run app migrations on test connection.
|
||||||
// ['connection' => 'test'],
|
// ['connection' => 'test'],
|
||||||
// // Run plugin migrations on test connection.
|
// // Run plugin migrations on test connection.
|
||||||
// ['plugin' => 'CakeContactUs'],
|
//// ['plugin' => 'CakeContactUs'],
|
||||||
// ['plugin' => 'Captcha'],
|
// ['plugin' => 'Captcha'],
|
||||||
//]);
|
//]);
|
||||||
|
|||||||
@@ -13,3 +13,13 @@ CREATE TABLE `contact_us_form_submissions`
|
|||||||
`backend_email_sent` datetime DEFAULT NULL,
|
`backend_email_sent` datetime DEFAULT NULL,
|
||||||
PRIMARY KEY (`id`)
|
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`)
|
||||||
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user