Table Create Table thad_products CREATE TABLE `thad_products` ( `productID` int(11) NOT NULL AUTO_INCREMENT, `categoryID` int(11) DEFAULT NULL, `name` varchar(255) DEFAULT NULL, `description` mediumtext, `customers_rating` float DEFAULT '0', `Price` double DEFAULT NULL, `in_stock` int(11) DEFAULT NULL, `customer_votes` int(11) DEFAULT '0', `items_sold` int(11) NOT NULL, `enabled` int(11) DEFAULT NULL, `brief_description` mediumtext, `list_price` double DEFAULT NULL, `product_code` varchar(25) DEFAULT NULL, `sort_order` int(11) DEFAULT '0', `default_picture` int(11) DEFAULT NULL, `date_added` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `viewed_times` int(11) DEFAULT '0', `eproduct_filename` varchar(255) DEFAULT NULL, `eproduct_available_days` int(11) DEFAULT '5', `eproduct_download_times` int(11) DEFAULT '5', `weight` float DEFAULT '0', `meta_description` mediumtext, `meta_keywords` mediumtext, `free_shipping` int(11) DEFAULT '0', `min_order_amount` int(11) DEFAULT '1', `shipping_freight` double DEFAULT '0', `classID` int(11) DEFAULT NULL, `title` mediumtext, `cpu` varchar(256) NOT NULL, `diller_price` int(11) NOT NULL, PRIMARY KEY (`productID`), KEY `IDX_PRODUCTS1` (`categoryID`) ) ENGINE=InnoDB AUTO_INCREMENT=60313 DEFAULT CHARSET=utf8 |