Sha256: 5b93333a149b74a11ff0863818b4f89f9e678367441b45fa531f479b25cecb1e
Contents?: true
Size: 504 Bytes
Versions: 48
Compression:
Stored size: 504 Bytes
Contents
# frozen_string_literal: true class CreateGoodJobsErrorEvent < 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_jobs, :error_event) end end add_column :good_jobs, :error_event, :integer, limit: 2 add_column :good_job_executions, :error_event, :integer, limit: 2 end end
Version data entries
48 entries across 48 versions & 1 rubygems