问题
I have a migration where I create a products table like so
class CreateProducts < ActiveRecord::Migration
def change
create_table :products do |t|
t.string :name
t.hstore :data
t.timestamps
end
end
end
On the activerecord-postgres-hstore page they add an index to the table (in SQL) with
CREATE INDEX products_gin_data ON products USING GIN(data);
However that change is not tracked by migrations (I'm guessing because it's Postgres specific?), is there a way to create an index from within a migration?
thanks!
回答1:
Yes! You can make another migration and use the 'execute' method... like so:
class IndexProductsGinData < ActiveRecord::Migration
def up
execute "CREATE INDEX products_gin_data ON products USING GIN(data)"
end
def down
execute "DROP INDEX products_gin_data"
end
end
UPDATE: You might also want to specify this line in config/application.rb:
config.active_record.schema_format = :sql
You can read about it here: http://apidock.com/rails/ActiveRecord/Base/schema_format/class
回答2:
In Rails 4, you can now do something like this in a migration:
add_index :products, :data, using: :gin
来源:https://stackoverflow.com/questions/10592221/rails-and-postgres-hstore-can-you-add-an-index-in-a-migration