10 lines
185 B
Ruby
10 lines
185 B
Ruby
![]() |
class AddCardTokenToTicket < ActiveRecord::Migration
|
||
|
def up
|
||
|
add_column :tickets, :source_token_id, 'uuid'
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
remove_column :tickets, :source_token_id
|
||
|
end
|
||
|
end
|