All,

I'm trying to figure out how to have run a sequel migration on Heroku.
Here's the rake task that I can use locally ...

<<
namespace :db do
   task :migrate do
       version = ENV['VERSION'] ? "-M #{ENV['VERSION']}" : ""
       system "sequel -m dbMigration #{version} #{ENV['DATABASE_URL']
|| 'sqlite://library.sqlite'} "
   end
end
>>

Does anyone have any good way to use Sequel migrations on Heroku? Hints?
Anything?

-- 
Scott
http://steamcode.blogspot.com/

-- 
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.

Reply via email to