7 lines
195 B
Ruby
7 lines
195 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddIndexesToSupporterNotes < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_index :supporter_notes, :supporter_id, order: { supporter_id: :asc }
|
|
end
|
|
end
|