houdini/db/migrate/20181129224030_add_index_to_payments_created_at.rb

6 lines
120 B
Ruby
Raw Normal View History

class AddIndexToPaymentsCreatedAt < ActiveRecord::Migration
def change
add_index :payments, :created_at
end
end