5 lines
127 B
Ruby
5 lines
127 B
Ruby
class AddPaymentModeToTickets < ActiveRecord::Migration
|
|
def change
|
|
add_column :tickets, :payment_mode, :string
|
|
end
|
|
end
|