· 9 years ago · Oct 07, 2016, 03:00 PM
1CREATE TABLE IF NOT EXISTS `table_loaded` (
2 `table_id` int(11) NOT NULL AUTO_INCREMENT,
3 `load_id` int(11) NOT NULL,
4 `lot_id` int(11) NOT NULL,
5 `loaded` int(11) NOT NULL DEFAULT '0',
6 `date` date NOT NULL,
7 `ration_id` int(11) NOT NULL,
8 PRIMARY KEY (`table_id`)
9) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;