db_drop_primary_key
- Versions
- 6
db_drop_primary_key(&$ret, $table)- 7
db_drop_primary_key($table)
Drop the primary key.
Parameters
$table The table to be altered.
Related topics
Code
includes/database/database.inc, line 2461
<?php
function db_drop_primary_key($table) {
return Database::getConnection()->schema()->dropPrimaryKey($table);
}
?>Login or register to post comments 