2024-04-29 00:17:15 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-02-04 19:23:40 +01:00
|
|
|
class AddJobExceptionLogs < ActiveRecord::Migration[6.0]
|
|
|
|
def change
|
|
|
|
add_column :dossiers, :api_entreprise_job_exceptions, :string, array: true
|
|
|
|
add_column :champs, :fetch_external_data_exceptions, :string, array: true
|
|
|
|
end
|
|
|
|
end
|