Sha256: ab07be384b66a5611213eb7ff01b9443e9afec744071cccab45cd65dde43c0d3
Contents?: true
Size: 480 Bytes
Versions: 11
Compression:
Stored size: 480 Bytes
Contents
# frozen_string_literal: true class AddJobsFinishedAtToGoodJobBatches < 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_batches, :jobs_finished_at) end end change_table :good_job_batches do |t| t.datetime :jobs_finished_at end end end
Version data entries
11 entries across 11 versions & 1 rubygems