Method: MysqlFramework::SqlColumn#not_eq

Defined in:
lib/mysql_framework/sql_column.rb

#not_eq(value) ⇒ Object

This method is called to create a not equal (<>) condition for this column.



25
26
27
# File 'lib/mysql_framework/sql_column.rb', line 25

def not_eq(value)
  SqlCondition.new(column: to_s, comparison: '<>', value: value)
end