aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/077_add_exim_log_index.rb
blob: c7526c2521fc3f52c919f0699936250e840b7ec3 (plain)
1
2
3
4
5
6
7
8
9
10
# -*- encoding : utf-8 -*-
class AddEximLogIndex < ActiveRecord::Migration
  def self.up
    add_index :exim_logs, :exim_log_done_id
  end

  def self.down
    remove_index :exim_logs, :exim_log_done_id
  end
end