db_drop_index
- Versions
- 6
db_drop_index(&$ret, $table, $name)- 7
db_drop_index($table, $name)
Drop an index.
Parameters
$table The table to be altered.
$name The name of the index.
Related topics
Code
includes/database/database.inc, line 2513
<?php
function db_drop_index($table, $name) {
return Database::getConnection()->schema()->dropIndex($table, $name);
}
?>Login or register to post comments 