aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/083_add_indices_track_sent.rb
blob: 2b0908af8e6ef8663b105803d4bf887e5678ac0e (plain)
1
2
3
4
5
6
7
8
9
class AddIndicesTrackSent < ActiveRecord::Migration
    def self.up
        add_index :track_things_sent_emails, :created_at
    end

    def self.down
        remove_index :track_things_sent_emails, :created_at
    end
end