class Oplogjam::Operators::UnsetField

Attributes

path[R]

Public Class Methods

new(path) click to toggle source
# File lib/oplogjam/operators/unset_field.rb, line 6
def initialize(path)
  @path = path
end

Public Instance Methods

delete(column) click to toggle source
# File lib/oplogjam/operators/unset_field.rb, line 10
def delete(column)
  column.delete_path(path)
end