moar tests
This commit is contained in:
parent
9600b73a25
commit
ad552db45b
|
@ -1020,7 +1020,7 @@ CREATE TABLE {$wpdb->prefix}woocommerce_sessions (
|
|||
UNIQUE KEY session_key (session_key)
|
||||
) $collate;
|
||||
CREATE TABLE {$wpdb->prefix}woocommerce_api_keys (
|
||||
key_id BIGINT UNSIGNED NOT NULL auto_increment,
|
||||
key_id BIGINT UNSIGNED NOT NULL auto_increment BIG CHANGE,
|
||||
user_id BIGINT UNSIGNED NOT NULL,
|
||||
description varchar(200) NULL,
|
||||
permissions varchar(10) NOT NULL,
|
||||
|
|
|
@ -477,7 +477,7 @@ class DataRegenerator {
|
|||
term_id bigint(20) NOT NULL,
|
||||
is_variation_attribute tinyint(1) NOT NULL,
|
||||
in_stock tinyint(1) NOT NULL,
|
||||
INDEX is_variation_attribute_term_id (is_variation_attribute, term_id),
|
||||
INDEX is_variation_attribute_term_id (is_variation_attribute, term_id) BIG CHANGE,
|
||||
PRIMARY KEY ( `product_or_parent_id`, `term_id`, `product_id`, `taxonomy` )
|
||||
) $collate;";
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue