Commit e2d60ff3 by Tobin

dc

parent a82a61dc
ALTER TABLE `checker` ADD `test_field` INT NOT NULL AFTER `status`; CREATE TABLE `booking` (
\ No newline at end of file `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