add stripe-gem and payment schema

This commit is contained in:
Rishabh Saxena 2016-07-27 13:18:50 +05:30
parent 2b4bf2fff7
commit b639d2eec5
5 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,5 @@
class AddPaymentIdToTicketPurchases < ActiveRecord::Migration
def change
add_column :ticket_purchases, :payment_id, :integer
end
end