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