Commit 5f1fda8b by Tobin

dc

parent e2d60ff3
CREATE TABLE `booking` ( INSERT INTO `review` (`id`, `event_id`, `customer_id`, `rate`, `feedback`) VALUES (NULL, '89', '107', '2', 'dff');
`id` int(11) NOT NULL,
`event_id` int(11) NOT NULL,
`customer_id` int(11) NOT NULL COMMENT 'Guest - 0',
`bookId` varchar(45) DEFAULT NULL,
`event_date_id` int(11) NOT NULL,
`qrcode` varchar(100) DEFAULT NULL,
`no_of_ticket` int(11) DEFAULT NULL,
`ticket_details` varchar(255) NOT NULL,
`amount` double DEFAULT NULL,
`reserved_by` int(11) DEFAULT '3' COMMENT '1 - SuperAdmin\n2 - Provider\n3 - Customer',
`booking_date` varchar(50) DEFAULT NULL,
`payment_status` tinyint(3) NOT NULL COMMENT '0=>Pending, 1=>Complete, 2 => No Payment',
`status` int(11) DEFAULT '1' COMMENT '0 - Cancelled, 1 - Booked, 2 - Completed, 3 - Pending, 4 - Deleted'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment