From 9eeded33f68872515954a2fc177fcb47a9273ae9 Mon Sep 17 00:00:00 2001 From: Frédéric Guillot Date: Fri, 15 Aug 2014 17:23:41 -0700 Subject: Add email notifications --- vendor/PicoDb/Table.php | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'vendor/PicoDb') diff --git a/vendor/PicoDb/Table.php b/vendor/PicoDb/Table.php index 8a0ce644..60a1280c 100644 --- a/vendor/PicoDb/Table.php +++ b/vendor/PicoDb/Table.php @@ -379,6 +379,12 @@ class Table $sql = sprintf('%s = ?', $this->db->escapeIdentifier($column)); break; + case 'neq': + case 'notequal': + case 'notequals': + $sql = sprintf('%s != ?', $this->db->escapeIdentifier($column)); + break; + case 'gt': case 'greaterthan': $sql = sprintf('%s > ?', $this->db->escapeIdentifier($column)); -- cgit v1.2.3