人工智能学习

rails 给数据库表里加入索引

本文主要是介绍rails 给数据库表里加入索引,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

创建迁移文件

rails g migration add_product_images_index

编写迁移文件

db/migrate/20170119093958_add_product_images_index.rb

class AddProductImagesIndex < ActiveRecord::Migration[5.0]
  def change
    add_index :product_images, [:product_id, :weight] #创建联合索引
  end
end

执行迁移

rake db:migrate

这篇关于rails 给数据库表里加入索引的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!