BasicObject
Internal class used by the Sequel.migration DSL, part of the migration extension.
Creates a reversible migration. This is the same as creating the same block with up, but it also calls the block and attempts to create a down block that will reverse the changes made by the block.
There are no guarantees that this will work perfectly in all cases, but it should work for most common cases.
# File lib/sequel/extensions/migration.rb, line 147 def change(&block) migration.up = block migration.down = MigrationReverser.new.reverse(&block) end
Defines the migration's down action.
# File lib/sequel/extensions/migration.rb, line 121 def down(&block) migration.down = block end
Disable the use of transactions for the related migration
# File lib/sequel/extensions/migration.rb, line 126 def no_transaction migration.use_transactions = false end
Generated with the Darkfish Rdoc Generator 2.