class Nandi::Instructions::DropTable

Attributes

table[R]

Public Class Methods

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

Public Instance Methods

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