2019-07-30 23:29:24 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-11-14 14:47:53 -06:00
|
|
|
class AddIndexesToSupporterNotes < ActiveRecord::Migration[4.2]
|
2018-06-04 16:07:02 -05:00
|
|
|
def change
|
2019-07-30 23:29:24 +02:00
|
|
|
add_index :supporter_notes, :supporter_id, order: { supporter_id: :asc }
|
2018-06-04 16:07:02 -05:00
|
|
|
end
|
|
|
|
end
|