houdini/db/migrate/20180713220028_add_indexes_to_refunds.rb

8 lines
147 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2019-11-14 20:47:53 +00:00
class AddIndexesToRefunds < ActiveRecord::Migration[4.2]
def change
add_index :refunds, :payment_id
end
end