class DynamoDbFramework::MigrationScript

Attributes

namespace[RW]
timestamp[RW]

Public Class Methods

descendants() click to toggle source
# File lib/dynamodb_framework/dynamodb_migration_script.rb, line 14
def self.descendants
  ObjectSpace.each_object(Class).select { |klass| klass < self }
end

Public Instance Methods

apply() click to toggle source
# File lib/dynamodb_framework/dynamodb_migration_script.rb, line 6
def apply
  raise 'Not implemented.'
end
undo() click to toggle source
# File lib/dynamodb_framework/dynamodb_migration_script.rb, line 10
def undo
  raise 'Not implemented.'
end