| Versionen | |
|---|---|
| drupal7 | public DatabaseSchema_mysql::addPrimaryKey(&$ret, $table, $fields) |
includes/
<?php
public function addPrimaryKey(&$ret, $table, $fields) {
$ret[] = update_sql('ALTER TABLE {' . $table . '} ADD PRIMARY KEY (' . $this->createKeySql($fields) . ')');
}
?>
Kommentare
Kommentar hinzufügen