Increase field size for new installation

This commit is contained in:
Rohan V 2019-12-18 12:49:32 +05:30
parent 9c4de8f5e7
commit 2541786ef5
No known key found for this signature in database
GPG Key ID: 4C848AF69C5CD459
1 changed files with 2 additions and 2 deletions

View File

@ -889,8 +889,8 @@ CREATE TABLE {$wpdb->prefix}wc_product_meta_lookup (
`sku` varchar(100) NULL default '',
`virtual` tinyint(1) NULL default 0,
`downloadable` tinyint(1) NULL default 0,
`min_price` decimal(10,2) NULL default NULL,
`max_price` decimal(10,2) NULL default NULL,
`min_price` decimal(19,4) NULL default NULL,
`max_price` decimal(19,4) NULL default NULL,
`onsale` tinyint(1) NULL default 0,
`stock_quantity` double NULL default NULL,
`stock_status` varchar(100) NULL default 'instock',