wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



add_clean_index › WordPress Function

Seit1.0.1
Veraltetn/v
add_clean_index ( $table, $index )
Parameter: (2)
  • (string) $table Database table name.
    Erforderlich: Ja
  • (string) $index Database table index column.
    Erforderlich: Ja
Gibt zurück:
  • (true) True, when done with execution.
Definiert in:
Codex:

Adds an index to a specified table.



Quellcode

function add_clean_index( $table, $index ) {
	global $wpdb;

	drop_index( $table, $index );
	$wpdb->query( "ALTER TABLE `$table` ADD INDEX ( `$index` )" );

	return true;
}