Gdn_DatabaseStructure::dropColumn PHP Method

dropColumn() public method

Drops $Name column from $this->Table().
public dropColumn ( string $Name )
$Name string The name of the column to drop from $this->Table().
    public function dropColumn($Name)
    {
        trigger_error(errorMessage('The selected database engine does not perform the requested task.', $this->ClassName, 'DropColumn'), E_USER_ERROR);
    }