I am wondering the best way to create a migration in sequel that is based on an existing table dump from postgres. I realise that I will have to write the down method myself to remove the table / functions / sequences, but is there a way to tell the sequel up migration to load an existing sql script and execute everything in the script?
Edit: Just in case its unclear, this is using the ruby Sequel SQL library / gem