tests should be working / build should suceed now

This commit is contained in:
bs
2026-01-28 01:23:58 -08:00
parent c267e6b521
commit 1be025aa22
8 changed files with 78 additions and 20 deletions
+14
View File
@@ -1 +1,15 @@
-- 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`)
);