houdini/db/migrate/20180713215825_add_payment_id_to_tickets.rb

8 lines
149 B
Ruby
Raw Normal View History

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