Add email notifications
This commit is contained in:
6
vendor/PicoDb/Table.php
vendored
6
vendor/PicoDb/Table.php
vendored
@@ -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));
|
||||
|
||||
Reference in New Issue
Block a user