Files
cake-contact-us/tests/schema.sql
Brandon Shipley 1be025aa22
Some checks failed
CI / testsuite (mysql, 8.2, ) (push) Failing after 4m30s
CI / testsuite (pgsql, 8.2, ) (push) Failing after 8m57s
CI / testsuite (mysql, 8.4, ) (push) Has started running
CI / testsuite (pgsql, 8.4, ) (push) Has started running
CI / testsuite (sqlite, 8.2, ) (push) Has started running
CI / testsuite (sqlite, 8.2, prefer-lowest) (push) Has been cancelled
CI / testsuite (sqlite, 8.4, ) (push) Has been cancelled
CI / Coding Standard & Static Analysis (push) Has been cancelled
tests should be working / build should suceed now
2026-01-28 01:23:58 -08:00

16 lines
609 B
SQL

-- Test database schema for CakeContactUs
CREATE TABLE `contact_us_form_submissions`
(
`id` char(36) NOT NULL,
`submitted_at` datetime NOT NULL,
`client_ip` varchar(45) DEFAULT NULL,
`first_name` varchar(255) DEFAULT NULL,
`last_name` varchar(255) DEFAULT NULL,
`email` varchar(255) DEFAULT NULL,
`contact_subject` varchar(255) DEFAULT NULL,
`message` text NOT NULL,
`confirm_email_sent` datetime DEFAULT NULL,
`backend_email_sent` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
);