class TDP::NotAppliedError

Raised when patch exists in the schema definition but wasn't applied to the database.

Attributes

patch[R]

Problematic patch (a Patch object)

Public Class Methods

new(patch) click to toggle source
patch

a problematic patch (a Patch object)

Calls superclass method
# File lib/tdp.rb, line 34
def initialize(patch)
  super "Patch is not applied: #{patch.name}"
  @patch = patch
end