class Nandi::Instructions::RemoveReference

Attributes

extra_args[R]
ref_name[R]
table[R]

Public Class Methods

new(table:, ref_name:, **kwargs) click to toggle source
# File lib/nandi/instructions/remove_reference.rb, line 8
def initialize(table:, ref_name:, **kwargs)
  @table = table
  @ref_name = ref_name
  @extra_args = kwargs
end

Public Instance Methods

lock() click to toggle source
# File lib/nandi/instructions/remove_reference.rb, line 18
def lock
  Nandi::Migration::LockWeights::ACCESS_EXCLUSIVE
end
procedure() click to toggle source
# File lib/nandi/instructions/remove_reference.rb, line 14
def procedure
  :remove_reference
end