shop.balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

product.sql (266B)


      1 ALTER TABLE `cart` CHANGE `quantity` `quantity` DECIMAL(10,2) NOT NULL;
      2  
      3 ALTER TABLE `product` CHANGE `quantity` `quantity` DECIMAL(10,2) NOT NULL DEFAULT '0.00';
      4 
      5 ALTER TABLE `order_product` CHANGE `quantity` `quantity` DECIMAL(10,2) NOT NULL DEFAULT '0.00';