blob: fd102caba2e9feb8a39053c74283e226ae258666 (
plain)
1
2
3
4
5
6
7
8
9
|
class AddIndices < ActiveRecord::Migration
def self.up
add_index :track_things_sent_emails, :track_thing_id
end
def self.down
remove_index :track_things_sent_emails, :track_thing_id
end
end
|