Sha256: 78e98dfa336f41bfab09d9228ad449bcf4ea30220f6b56860bbb712d28550ea2
Contents?: true
Size: 474 Bytes
Versions: 10
Compression:
Stored size: 474 Bytes
Contents
# frozen_string_literal: true class CreateGoodJobExecutionErrorBacktrace < ActiveRecord::Migration<%= migration_version %> def change reversible do |dir| dir.up do # Ensure this incremental update migration is idempotent # with monolithic install migration. return if connection.column_exists?(:good_job_executions, :error_backtrace) end end add_column :good_job_executions, :error_backtrace, :text, array: true end end
Version data entries
10 entries across 10 versions & 1 rubygems