Granada\ORM::where_not_null PHP Method

where_not_null() public method

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