demarches-normaliennes/db/migrate/20210204180955_add_job_exception_logs.rb

7 lines
237 B
Ruby
Raw Normal View History

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