5 lines
163 B
Ruby
5 lines
163 B
Ruby
class AddIndexesToSupporterNotes < ActiveRecord::Migration
|
|
def change
|
|
add_index :supporter_notes, :supporter_id, :order => {:supporter_id => :asc}
|
|
end
|
|
end
|