add_clean_index( string $table, string $index )

Adds an index to a specified table.


Description Description


Parameters Parameters

$table

(string) (Required) Database table name.

$index

(string) (Required) Database table index column.


Top ↑

Return Return

(true) True, when done with execution.


Top ↑

Source Source

File: wp-admin/includes/upgrade.php

function add_clean_index( $table, $index ) {
	global $wpdb;
	drop_index( $table, $index );
	$wpdb->query( "ALTER TABLE `$table` ADD INDEX ( `$index` )" );
	return true;
}

Top ↑

Changelog Changelog

Changelog
Version Description
1.0.1 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.