IsFalse appends a predicate that checks if the column value is falsey.
(col string)
| 848 | |
| 849 | // IsFalse appends a predicate that checks if the column value is falsey. |
| 850 | func IsFalse(col string) *Predicate { |
| 851 | return P().IsFalse(col) |
| 852 | } |
| 853 | |
| 854 | // IsFalse appends a predicate that checks if the column value is falsey. |
| 855 | func (p *Predicate) IsFalse(col string) *Predicate { |