would this work?
— ——————————————————–
—
— Table structure for table wp_woocommerce_attribute_taxonomies
—
CREATE TABLE IF NOT EXISTS wp_woocommerce_attribute_taxonomies
(
attribute_id
bigint(20) NOT NULL auto_increment,
attribute_name
varchar(200) NOT NULL,
attribute_label
longtext,
attribute_type
varchar(200) NOT NULL,
attribute_orderby
varchar(200) NOT NULL,
attribute_public
int(1) NOT NULL default ‘1’,
PRIMARY KEY (attribute_id
),
KEY attribute_name
(attribute_name
)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
— ——————————————————–
—
— Table structure for table wp_woocommerce_downloadable_product_permissions
—
CREATE TABLE IF NOT EXISTS wp_woocommerce_downloadable_product_permissions
(
permission_id
bigint(20) NOT NULL auto_increment,
download_id
varchar(32) NOT NULL,
product_id
bigint(20) NOT NULL,
order_id
bigint(20) NOT NULL default ‘0’,
order_key
varchar(200) NOT NULL,
user_email
varchar(200) NOT NULL,
user_id
bigint(20) default NULL,
downloads_remaining
varchar(9) default NULL,
access_granted
datetime NOT NULL default ‘0000-00-00 00:00:00’,
access_expires
datetime default NULL,
download_count
bigint(20) NOT NULL default ‘0’,
PRIMARY KEY (permission_id
),
KEY download_order_key_product
(product_id
,order_id
,order_key
,download_id
),
KEY download_order_product
(download_id
,order_id
,product_id
)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
— ——————————————————–
—
— Table structure for table wp_woocommerce_order_itemmeta
—
CREATE TABLE IF NOT EXISTS wp_woocommerce_order_itemmeta
(
meta_id
bigint(20) NOT NULL auto_increment,
order_item_id
bigint(20) NOT NULL,
meta_key
varchar(255) default NULL,
meta_value
longtext,
PRIMARY KEY (meta_id
),
KEY order_item_id
(order_item_id
),
KEY meta_key
(meta_key
)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=658 ;
— ——————————————————–
—
— Table structure for table wp_woocommerce_tax_rates
—
CREATE TABLE IF NOT EXISTS wp_woocommerce_tax_rates
(
tax_rate_id
bigint(20) NOT NULL auto_increment,
tax_rate_country
varchar(200) NOT NULL default ”,
tax_rate_state
varchar(200) NOT NULL default ”,
tax_rate
varchar(200) NOT NULL default ”,
tax_rate_name
varchar(200) NOT NULL default ”,
tax_rate_priority
bigint(20) NOT NULL,
tax_rate_compound
int(1) NOT NULL default ‘0’,
tax_rate_shipping
int(1) NOT NULL default ‘1’,
tax_rate_order
bigint(20) NOT NULL,
tax_rate_class
varchar(200) NOT NULL default ”,
PRIMARY KEY (tax_rate_id
),
KEY tax_rate_country
(tax_rate_country
),
KEY tax_rate_state
(tax_rate_state
),
KEY tax_rate_class
(tax_rate_class
),
KEY tax_rate_priority
(tax_rate_priority
)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
— ——————————————————–
—
— Table structure for table wp_woocommerce_termmeta
—
CREATE TABLE IF NOT EXISTS wp_woocommerce_termmeta
(
meta_id
bigint(20) NOT NULL auto_increment,
woocommerce_term_id
bigint(20) NOT NULL,
meta_key
varchar(255) default NULL,
meta_value
longtext,
PRIMARY KEY (meta_id
),
KEY woocommerce_term_id
(woocommerce_term_id
),
KEY meta_key
(meta_key
)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=37 ;