Class: MigrationScript
- Inherits:
-
Object
- Object
- MigrationScript
- Defined in:
- lib/dynamodb_framework/dynamodb_migration_script.rb
Instance Attribute Summary collapse
-
#timestamp ⇒ Object
Returns the value of attribute timestamp.
Class Method Summary collapse
Instance Method Summary collapse
Instance Attribute Details
#timestamp ⇒ Object
Returns the value of attribute timestamp.
2 3 4 |
# File 'lib/dynamodb_framework/dynamodb_migration_script.rb', line 2 def end |
Class Method Details
.descendants ⇒ Object
12 13 14 |
# File 'lib/dynamodb_framework/dynamodb_migration_script.rb', line 12 def self.descendants ObjectSpace.each_object(Class).select { |klass| klass < self } end |
Instance Method Details
#apply ⇒ Object
4 5 6 |
# File 'lib/dynamodb_framework/dynamodb_migration_script.rb', line 4 def apply raise 'Not implemented.' end |
#undo ⇒ Object
8 9 10 |
# File 'lib/dynamodb_framework/dynamodb_migration_script.rb', line 8 def undo raise 'Not implemented.' end |