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