Postgres::dropRole PHP Method

dropRole() public method

Removes a role
public dropRole ( $rolename )
$rolename The name of the role to drop
    function dropRole($rolename)
    {
        $this->fieldClean($rolename);
        $sql = "DROP ROLE \"{$rolename}\"";
        return $this->execute($sql);
    }
Postgres