Sequel.migration do

up do
  run 'CREATE EXTENSION hstore;'
end

down do
  run 'DROP EXTENSION IF EXISTS hstore;'
end

end