12 lines
404 B
SQL
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;
|