Skip to content

Commit

Permalink
[5.2] Add missing postgresql-specific operators (#14224)
Browse files Browse the repository at this point in the history
* Add missing postgresql-specific operators

* Fix style error
  • Loading branch information
telless authored and taylorotwell committed Jul 5, 2016
1 parent 90d95e2 commit c68cee9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Database/Query/Builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ class Builder
'&', '|', '^', '<<', '>>',
'rlike', 'regexp', 'not regexp',
'~', '~*', '!~', '!~*', 'similar to',
'not similar to',
'not similar to', 'not ilike', '~~*', '!~~*',
];

/**
Expand Down

0 comments on commit c68cee9

Please sign in to comment.