1.20.x schema.inc | abstract public DatabaseSchema::renameTable($table, $new_name) |
Rename a table.
Parameters
$table: The table to be renamed.
$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
- includes/
database/ schema.inc, line 459 - Generic Database schema code.
Class
- DatabaseSchema
- Base class for database schema definitions.
Code
abstract public function renameTable($table, $new_name);