経緯とか Railsに以下のようなモデルを追加しようとしたら、 index name ... too long というエラーになったので、対処法を覚え書くことにした。 class CreatePaymentMethodRestrictions < ActiveRecord::Migration def change create_table :payment_method_restrictions do |t| t.references :product, null: false t.integer :payment_method_cd, null: false t.timestamps null: false end add_index :payment_method_restrictions, [:product_id, :payment_method_cd], unique: tru