class Babik::QuerySet::Update::Assignment::Decrement

Decrement operation

Public Class Methods

new(field, value = 1) click to toggle source
# File lib/babik/queryset/lib/update/assignment.rb, line 79
def initialize(field, value = 1)
  super(field, '-', value)
end