saving form data on checkout

This commit is contained in:
Chris Smith
2019-03-04 16:07:59 -06:00
parent c4b8d8b8c6
commit f0abcf9a7e
4 changed files with 55 additions and 10 deletions

View File

@@ -63,6 +63,8 @@ CREATE TABLE `orders` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`ticket_quantity` int(11) NOT NULL,
`enhancer_quantity` int(11) NOT NULL DEFAULT '0',
`ticket_cents` int(11) NOT NULL DEFAULT '0',
`enhancer_cents` int(11) NOT NULL DEFAULT '0',
`additional_cents` int(11) NOT NULL DEFAULT '0',
`total_cents` int(11) NOT NULL,
`first_name` varchar(45) NOT NULL,