class EnableHstore < ActiveRecord::Migration
def self.up
execute 'CREATE EXTENSION hstore'
end
def self.down
execute 'DROP EXTENSION hstore'
end
end
Conteúdo para você se capacitar em programação
class EnableHstore < ActiveRecord::Migration
def self.up
execute 'CREATE EXTENSION hstore'
end
def self.down
execute 'DROP EXTENSION hstore'
end
end