You are here

function db_rename_table in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/includes/database.inc \db_rename_table()

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. E.g. $injected_database->schema()->renameTable($table, $new_name);

See also

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

Related topics

1 call to db_rename_table()
SchemaTest::testSchema in core/modules/system/src/Tests/Database/SchemaTest.php
Tests database interactions.

File

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

Code

function db_rename_table($table, $new_name) {
  return Database::getConnection()
    ->schema()
    ->renameTable($table, $new_name);
}