Automattic\WooCommerce\Database\Migrations

MetaToCustomTableMigrator::get_destination_table_primary_id_schema()privateWC 1.0

Generate schema for primary ID column of destination table.

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

Хуков нет.

Возвращает

Массив[]. Schema for primary ID column.

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

// private - только в коде основоного (родительского) класса
$result = $this->get_destination_table_primary_id_schema(): array;

Код MetaToCustomTableMigrator::get_destination_table_primary_id_schema() WC 8.7.0

private function get_destination_table_primary_id_schema(): array {
	return array(
		'destination_primary_key' => array(
			'destination' => $this->schema_config['destination']['primary_key'],
			'type'        => $this->schema_config['destination']['primary_key_type'],
		),
	);
}