https://postgres.heroku.com/blog/past/2012/4/26/heroku_postgres_development_plan/に従って、「heroku addons:addheroku-postgresql:dev」を実行しました。しかし、私がするとき
class CreateUsers < ActiveRecord::Migration
def up
create_table :users do |t|
execute "CREATE EXTENSION hstore"
t.hstore :access
end
end
def down
drop_table :users
execute "DROP EXTENSION hstore"
end
end
end
次に、「heroku run rakedb:migrate」というエラーが発生します。
PG :: Error:ERROR:「EXTENSION」またはその近くの構文エラー1行目:CREATE EXTENSION hstore ^:CREATE EXTENSION hstore