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