使用LHM(Large Hadron Migrator)可以使用语法文档添加索引:

require 'lhm'
class SomeMigration < ActiveRecord::Migration
  def self.up
    Lhm.change_table :foos do |m|
      m.add_unique_index  [:bar_id, :baz] # add_index if you don't want uniqueness
    end
  end
  def self.down
    Lhm.change_table :foos do |m|
      m.remove_index  [:bar_id, :baz]
    end
  end
end

如何在LHM中指定索引的特定名称?用于添加和删除
我担心我会点击index name length limit因为我使用了许多列

最佳答案

m.add_unique_index([:long_column, :super_long_column], 'shortened_index_name')

Link to LHM docs for #add_unique_index

关于mysql - Rails LHM迁移-指定索引名称,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38635114/

10-10 05:29