Last active
August 29, 2015 13:59
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE IF NOT EXISTS `receipt` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`total` decimal(15,2) DEFAULT 0, | |
PRIMARY KEY (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; | |
INSERT INTO `receipt` (id) VALUES (7006),(3493); | |
CREATE TABLE IF NOT EXISTS `item` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`category_id` int(11) DEFAULT NULL, | |
`receipt_id` int(11) DEFAULT NULL, | |
`total` decimal(15,2) DEFAULT '0.00', | |
`quadrant` varchar(8) COLLATE utf8_unicode_ci NOT NULL, | |
PRIMARY KEY (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=40779 ; | |
-- | |
-- Dumping data for table `item` | |
-- | |
INSERT INTO `item` (`id`, `category_id`, `receipt_id`, `total`, `quadrant`) VALUES | |
(1925, 390, 1712, 1.00, 'WE'), | |
(11834, 263, 3168, 8.40, 'AX'), | |
(18012, 263, 3493, 7.99, 'AX'), | |
(25128, 390, 5681, 14.99, 'WE'), | |
(26898, 267, 4214, 9.99, 'AX'), | |
(27486, 267, 7345, 1.49, 'AX'), | |
(33331, 263, 7006, 29.94, 'BT'), | |
(34947, 390, 9053, 20.01, 'BT'), | |
(39309, 390, 13544, 14.09, 'BT'), | |
(40778, 267, 14153, 5.94, 'BT'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment