class Nandi::Instructions::RemoveNotNullConstraint

Attributes

column[R]
table[R]

Public Class Methods

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

Public Instance Methods

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