9 lines
185 B
Ruby
9 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
|