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