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