我有一个迁移,我像这样创建一个产品表
class CreateProducts < ActiveRecord::Migration
def change
create_table :products do |t|
t.string :name
t.hstore :data
t.timestamps
end
end
end
在activerecord-postgres-hstore 页面上,他们向表(在 SQL 中)添加索引
CREATE INDEX products_gin_data ON products USING GIN(data);
但是迁移不会跟踪这种变化(我猜是因为它是 Postgres 特定的?),有没有办法从迁移中创建索引?
谢谢!