Class: Sequel::SimpleMigration
- Defined in:
- lib/sequel/extensions/migration.rb
Overview
Migration class used by the Sequel.migration DSL, using instances for each migration, unlike the Migration
class, which uses subclasses for each migration. Part of the migration
extension.
Instance Attribute Summary collapse
-
#down ⇒ Object
Proc used for the down action.
-
#up ⇒ Object
Proc used for the up action.
-
#use_transactions ⇒ Object
Whether to use transactions for this migration, default depends on the database.
Instance Method Summary collapse
-
#apply(db, direction) ⇒ Object
Apply the appropriate block on the
Database
instance using instance_exec. -
#initialize ⇒ SimpleMigration
constructor
Don’t set transaction use by default.
Constructor Details
permalink #initialize ⇒ SimpleMigration
Don’t set transaction use by default.
101 102 103 |
# File 'lib/sequel/extensions/migration.rb', line 101 def initialize @use_transactions = nil end |
Instance Attribute Details
permalink #down ⇒ Object
Proc used for the down action
91 92 93 |
# File 'lib/sequel/extensions/migration.rb', line 91 def down @down end |
Instance Method Details
permalink #apply(db, direction) ⇒ Object
Apply the appropriate block on the Database
instance using instance_exec.
107 108 109 110 111 112 |
# File 'lib/sequel/extensions/migration.rb', line 107 def apply(db, direction) raise(ArgumentError, "Invalid migration direction specified (#{direction.inspect})") unless [:up, :down].include?(direction) if prok = public_send(direction) db.instance_exec(&prok) end end |