class Babik::QuerySet::Update::Assignment::Increment

Increment operation

Public Class Methods

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