db_rename_table

db_rename_table($table, $new_name)

Renames a table.

Parameters

$table: The current name of the table to be renamed.

$new_name: The new name for the table.

Deprecated

as of Drupal 8.0.x, will be removed in Drupal 9.0.0. Instead, get a database connection injected into your service from the container, get its schema driver, and call renameTable() on it. For example, $injected_database->schema()->renameTable($table, $new_name);

See also

\Drupal\Core\Database\Schema::renameTable()

Related topics

Schema API
API to handle database schemas.

File

core/includes/database.inc, line 707
Core systems for the database layer.

Code

function db_rename_table($table, $new_name) {
  return Database::getConnection()->schema()->renameTable($table, $new_name);
}
doc_Drupal
2016-10-29 09:01:32
Comments
Leave a Comment

Please login to continue.