Gdn_DatabaseStructure::renameColumn PHP Method

renameColumn() public method

Renames a column in $this->Table().
public renameColumn ( string $OldName, string $NewName )
$OldName string The name of the column to be renamed.
$NewName string The new name for the column being renamed.
    public function renameColumn($OldName, $NewName)
    {
        trigger_error(errorMessage('The selected database engine does not perform the requested task.', $this->ClassName, 'RenameColumn'), E_USER_ERROR);
    }