| Current Path : /var/www/html/dynawebv3.blunetdev.com/backend/modules/contactForm/ |
| Current File : /var/www/html/dynawebv3.blunetdev.com/backend/modules/contactForm/up.sql |
CREATE TABLE IF NOT EXISTS `contact_form_setup` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `email_address` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `created_by` int(11) DEFAULT NULL, `updated_at` datetime DEFAULT NULL, `updated_by` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; CREATE TABLE IF NOT EXISTS `contact_form_messages` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `email_address` varchar(255) DEFAULT NULL, `message` text DEFAULT NULL, `send_at` datetime DEFAULT NULL, `reply_status` varchar(255) DEFAULT NULL, `reply_content` text DEFAULT NULL, `reply_by` int(11) DEFAULT NULL, `reply_at` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1;