35122-vm/db/migrations/001_create_service_requests.sql
Flatlogic Bot 2e32207c38 001
2025-10-22 18:57:21 +00:00

11 lines
355 B
SQL

CREATE TABLE IF NOT EXISTS `service_requests` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`email` varchar(255) NOT NULL,
`message` text NOT NULL,
`status` varchar(50) NOT NULL DEFAULT 'pending',
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;