5 lines
141 B
Ruby
5 lines
141 B
Ruby
class AddPaymentIdToTicketPurchases < ActiveRecord::Migration
|
|
def change
|
|
add_column :ticket_purchases, :payment_id, :integer
|
|
end
|
|
end
|