summaryrefslogtreecommitdiffstats
path: root/db/migrate/066_add_custom_value_customized_index.rb
blob: 69919963a5698b2a42d0896445e4aab93b8f57fd (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: false

class AddCustomValueCustomizedIndex < ActiveRecord::Migration[4.2]
  def self.up
    add_index :custom_values, [:customized_type, :customized_id], :name => :custom_values_customized
  end

  def self.down
    remove_index :custom_values, :name => :custom_values_customized
  end
end