| Versionen | |
|---|---|
| drupal6 – drupal7 | db_drop_unique_key(&$ret, $table, $name) |
Drop a unique key.
$ret Array to which query results will be added.
$table The table to be altered.
$name The name of the key.
includes/
<?php
function db_drop_unique_key(&$ret, $table, $name) {
return Database::getConnection()->schema()->dropUniqueKey($ret, $table, $name);
}
?>
Kommentare
Kommentar hinzufügen