function db_add_index

Same name and namespace in other branches
  1. 6.x drupal-6.x/includes/database.pgsql.inc \db_add_index()
  2. 6.x drupal-6.x/includes/database.mysql-common.inc \db_add_index()

Adds an index.

Parameters

$table: The table to be altered.

$name: The name of the index.

$fields: An array of field names.

Related topics

29 calls to db_add_index()
aggregator_update_7002 in drupal-7.x/modules/aggregator/aggregator.install
Add queued timestamp.
aggregator_update_7003 in drupal-7.x/modules/aggregator/aggregator.install
Increase the length of {aggregator_feed}.url.
comment_update_7002 in drupal-7.x/modules/comment/comment.install
Rename {comments} table to {comment} and upgrade it.
comment_update_7003 in drupal-7.x/modules/comment/comment.install
Split {comment}.timestamp into 'created' and 'changed', improve indexing on {comment}.
comment_update_7004 in drupal-7.x/modules/comment/comment.install
Upgrade the {node_comment_statistics} table.

... See full list

Archivo

drupal-7.x/includes/database/database.inc, line 2940
Core systems for the database layer.

Código

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