Granada\ORM::where_null PHP Method

where_null() public method

Add a WHERE column IS NULL clause to your query
public where_null ( string $column_name )
$column_name string
    public function where_null($column_name)
    {
        $column_name = $this->_quote_identifier($column_name);
        return $this->_add_where("{$column_name} IS NULL");
    }
ORM