add payment mode to ticket schema

This commit is contained in:
Rishabh Saxena 2016-05-26 23:01:36 +05:30
parent 301ad1c722
commit a8fd1a7903
5 changed files with 14 additions and 3 deletions

View file

@ -0,0 +1,5 @@
class AddPaymentModeToTickets < ActiveRecord::Migration
def change
add_column :tickets, :payment_mode, :string
end
end