6 lines
120 B
Ruby
6 lines
120 B
Ruby
|
class AddIndexToPaymentsCreatedAt < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_index :payments, :created_at
|
||
|
end
|
||
|
end
|