Change db update version from 6.1 to 6.2.

This commit is contained in:
Nestor Soriano 2021-12-03 12:49:07 +01:00
parent 79f2936ae9
commit 95dde6c082
No known key found for this signature in database
GPG Key ID: 08110F3518C12CAD
2 changed files with 5 additions and 5 deletions

View File

@ -169,9 +169,9 @@ class WC_Install {
'wc_update_600_migrate_rate_limit_options',
'wc_update_600_db_version',
),
'6.1.0' => array(
'6.2.0' => array(
'wc_create_product_attributes_lookup_table',
'wc_update_610_db_version',
'wc_update_620_db_version',
),
);

View File

@ -2357,8 +2357,8 @@ function wc_create_product_attributes_lookup_table() {
/**
*
* Update DB version to 6.1.0.
* Update DB version to 6.2.0.
*/
function wc_update_610_db_version() {
WC_Install::update_db_version( '6.1.0' );
function wc_update_620_db_version() {
WC_Install::update_db_version( '6.2.0' );
}