Merge pull request #13717 from thenbrent/increase_order_item_type_length

Restore prior order item length
This commit is contained in:
Mike Jolley 2017-03-22 17:19:49 +00:00 committed by GitHub
commit 9e81eb9418
1 changed files with 1 additions and 1 deletions

View File

@ -521,7 +521,7 @@ CREATE TABLE {$wpdb->prefix}woocommerce_downloadable_product_permissions (
CREATE TABLE {$wpdb->prefix}woocommerce_order_items (
order_item_id BIGINT UNSIGNED NOT NULL auto_increment,
order_item_name TEXT NOT NULL,
order_item_type varchar(20) NOT NULL DEFAULT '',
order_item_type varchar(200) NOT NULL DEFAULT '',
order_id BIGINT UNSIGNED NOT NULL,
PRIMARY KEY (order_item_id),
KEY order_id (order_id)