[-] SQL : removed unsigned from product stock quantity field
git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@5933 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
@@ -896,7 +896,7 @@ CREATE TABLE `PREFIX_order_detail` (
|
||||
`product_attribute_id` int(10) unsigned default NULL,
|
||||
`product_name` varchar(255) NOT NULL,
|
||||
`product_quantity` int(10) unsigned NOT NULL default '0',
|
||||
`product_quantity_in_stock` int(10) unsigned NOT NULL default 0,
|
||||
`product_quantity_in_stock` int(10) NOT NULL default 0,
|
||||
`product_quantity_refunded` int(10) unsigned NOT NULL default '0',
|
||||
`product_quantity_return` int(10) unsigned NOT NULL default '0',
|
||||
`product_quantity_reinjected` int(10) unsigned NOT NULL default 0,
|
||||
|
||||
Reference in New Issue
Block a user