summaryrefslogtreecommitdiffstats
path: root/db/migrate/20091220183727_add_index_to_settings_name.rb
blob: 51a33b17943abf9045ed969513d86bddb680061c (plain)
1
2
3
4
5
6
7
8
9
class AddIndexToSettingsName < ActiveRecord::Migration[4.2]
  def self.up
    add_index :settings, :name
  end

  def self.down
    remove_index :settings, :name
  end
end