Adds an index.
$table: The table to be altered.
$name: The name of the index.
$fields: An array of field names.
function db_add_index($table, $name, $fields) {
return Database::getConnection()
->schema()
->addIndex($table, $name, $fields);
}