34681-vm/db/migrations/001_create_contact_submissions.sql
Flatlogic Bot 373e36aedb 0.1
2025-10-05 01:54:26 +00:00

12 lines
404 B
SQL

-- 001_create_contact_submissions.sql
-- Creates the table for storing contact form submissions.
CREATE TABLE IF NOT EXISTS `contact_submissions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`email` varchar(255) NOT NULL,
`message` text NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;