Your IP : 216.73.216.79


Current Path : /var/www/html/learn/backend/modules/feedback/
Upload File :
Current File : /var/www/html/learn/backend/modules/feedback/up.sql

CREATE TABLE IF NOT EXISTS `feedback_main` (
  `id` int(11) NOT NULL,
  `type` varchar(255) DEFAULT NULL,
  `cat` varchar(255) DEFAULT NULL,
  `ticket_no` varchar(255) DEFAULT NULL,
  `feedback` text DEFAULT NULL,
  `status` varchar(255) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `created_user_type` varchar(255) DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `updated_by` int(11) DEFAULT NULL,
  `updated_user_type` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

CREATE TABLE IF NOT EXISTS `feedback_messages` (
  `id` int(11) NOT NULL,
  `feedback_id` int(11) DEFAULT NULL,
  `message` text DEFAULT NULL,
  `read_status` varchar(255) DEFAULT NULL,
  `send_to` varchar(255) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `created_user_type` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;