| Versionen | |
|---|---|
| drupal7 | public DatabaseSchema_mysql::renameTable(&$ret, $table, $new_name) |
includes/
<?php
public function renameTable(&$ret, $table, $new_name) {
$ret[] = update_sql('ALTER TABLE {' . $table . '} RENAME TO {' . $new_name . '}');
}
?>
Kommentare
Kommentar hinzufügen