| Current Path : /var/www/html/donate/backend/modules/shop/ |
| Current File : /var/www/html/donate/backend/modules/shop/up.sql |
CREATE TABLE IF NOT EXISTS `shop_cart` ( `cart_id` int(11) NOT NULL, `cart_user_id` int(11) DEFAULT NULL, `cart_product_type` varchar(255) DEFAULT NULL, `cart_data_id` int(11) DEFAULT NULL, `cart_product_qty` int(11) DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; ALTER TABLE `shop_cart` ADD PRIMARY KEY (`cart_id`); ALTER TABLE `shop_cart` MODIFY `cart_id` int(11) NOT NULL AUTO_INCREMENT; COMMIT;