This is the case where I'm migrating from AR to sequel, and the table has a different schema. Instead of force-update it, I could just use an alternative table, if I use the Migrator API correctly and am able to pass the :table directive. See http://sequel.jeremyevans.net/rdoc/classes/Sequel/Migrator.html#method-c-run
This is the case where I'm migrating from AR to sequel, and the table has a different schema. Instead of force-update it, I could just use an alternative table, if I use the Migrator API correctly and am able to pass the :table directive. See http://sequel.jeremyevans.net/rdoc/classes/Sequel/Migrator.html#method-c-run
Here's where it's used within sequel_rails: https://github.com/TalentBox/sequel-rails/blob/master/lib/sequel_rails/migrations.rb#L6-L10