Automattic\WooCommerce\DataBase\Migrations\CustomOrderTable

CLIRunner::migrate()publicWC 1.0

[Deprecated] Use wp wc cot sync instead. Copy order data into the postmeta table.

Note that this could dramatically increase the size of your postmeta table, but is recommended if you wish to stop using the custom orders table plugin.

OPTIONS

[--batch-size=<batch-size>]
The number of orders to process in each batch. Passing a value of 0 will disable batching.
--- default: 500
---

EXAMPLES

# Copy all order data into the post meta table, 500 posts at a time.
wp wc cot migrate --batch-size=500

Метод класса: CLIRunner{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$CLIRunner = new CLIRunner();
$CLIRunner->migrate( $args, $assoc_args );
$args(массив)
Positional arguments passed to the command.
По умолчанию: array()
$assoc_args(массив)
Associative arguments (options) passed to the command.
По умолчанию: array()

Код CLIRunner::migrate() WC 8.7.0

public function migrate( $args = array(), $assoc_args = array() ) {
	WP_CLI::log( __( 'Migrate command is deprecated. Please use `sync` instead.', 'woocommerce' ) );
}