我使用以下代码启用了hstore。
class SetupHstore < ActiveRecord::Migration
def self.up
execute "CREATE EXTENSION IF NOT EXISTS hstore"
end
def self.down
execute "DROP EXTENSION IF EXISTS hstore"
end
end
我迁移了文件&#39; enable_extension hstore&#39;行出现在模式文件中。 但是当我在另一个系统中使用相同的代码时,我得到了一个错误 ActiveRecord :: StatementInvalid:PG :: UndefinedObject:ERROR:type&#34; hstore&#34;不存在
通过删除该架构并迁移它,我也尝试启用它但仍然无法正常工作。