osem-fcy/db/migrate/20170924190528_add_amount_paid_to_ticket_purchases.rb

6 lines
153 B
Ruby
Raw Normal View History

class AddAmountPaidToTicketPurchases < ActiveRecord::Migration
def change
add_column :ticket_purchases, :amount_paid, :float, default: 0
end
end