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