Module: AlsoMigrate::Migrator::InstanceMethods
- Defined in:
- lib/also_migrate/migrator.rb
Defined Under Namespace
Modules: AlsoMigrate
Instance Method Summary collapse
Instance Method Details
#migrate_with_also_migrate ⇒ Object
16 17 18 19 20 21 22 23 24 25 |
# File 'lib/also_migrate/migrator.rb', line 16 def migrate_with_also_migrate (::AlsoMigrate.configuration || []).each do |config| AlsoMigrate.create_tables(config) end rescue Exception => e puts "AlsoMigrate error: #{e.}" puts e.backtrace.join("\n") ensure migrate_without_also_migrate end |