wordpress - woocommerce_order_items table doesn't exist -


please let me know how install table on woocommerce.

woocommerce_order_items

i deactivated , activated plugin well. wordpress prefix not containing more 6 characters. if have table please post sql query create table manually.

wc version: 2.4.6

thank you.

try this

drop table if exists `wp_woocommerce_order_items`; create table if not exists `wp_woocommerce_order_items` (   `order_item_id` bigint(20) not null auto_increment,   `order_item_name` longtext not null,   `order_item_type` varchar(200) not null default '',   `order_id` bigint(20) not null,   primary key (`order_item_id`),   key `order_id` (`order_id`) ) engine=myisam auto_increment=236 default charset=utf8; 

Comments

Popular posts from this blog

java - Date formats difference between yyyy-MM-dd'T'HH:mm:ss and yyyy-MM-dd'T'HH:mm:ssXXX -

c# - Get rid of xmlns attribute when adding node to existing xml -