1.20.x database.inc db_add_index($table, $name, $fields)

Adds an index.

Parameters

$table: The table to be altered.

$name: The name of the index.

$fields: An array of field names.

Related topics

File

includes/database/database.inc, line 3202
Core systems for the database layer.

Code

function db_add_index($table, $name, $fields) {
  return Database::getConnection()->schema()->addIndex($table, $name, $fields);
}