1 schema.inc abstract public DatabaseSchema::renameTable($table, $new_name)

Rename a table.

Parameters

string $table: The table to be renamed.

string $new_name: The new name for the table.

Throws

DatabaseSchemaObjectDoesNotExistException If the specified table doesn't exist.

DatabaseSchemaObjectExistsException If a table with the specified new name already exists.

File

core/includes/database/schema.inc, line 407
Generic Database schema code.

Class

DatabaseSchema
Base class for database schema definitions.

Code

abstract public function renameTable($table, $new_name);