根据https://postgres.heroku.com/blog/past/2012/4/26/heroku_postgres_development_plan/我做了“heroku addons:add heroku-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 rake db:migrate”我得到这个错误:
PG::Error: ERROR: 在“EXTENSION” LINE 1 或附近出现语法错误:CREATE EXTENSION hstore ^ : CREATE EXTENSION hstore