summaryrefslogtreecommitdiff
path: root/idiorm.php
diff options
context:
space:
mode:
Diffstat (limited to 'idiorm.php')
-rw-r--r--idiorm.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/idiorm.php b/idiorm.php
index a2b9e46..b79c230 100644
--- a/idiorm.php
+++ b/idiorm.php
@@ -340,6 +340,13 @@
}
/**
+ * Add where WHERE ... NOT LIKE clause to your query.
+ */
+ public function where_not_like($column_name, $value) {
+ return $this->add_where($column_name, 'NOT LIKE', $value);
+ }
+
+ /**
* Add a WHERE ... > clause to your query
*/
public function where_gt($column_name, $value) {