1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-25 08:09:38 +02:00

Add missing migrations for good_job 4x (#967)

* Goodjob 3.99

* Properly bump to good_job 4.0.0

* Remove accidently tracked .tool-versions
This commit is contained in:
Tony Vincent 2024-07-09 20:23:19 +02:00 committed by GitHub
parent 538b00712c
commit de5a2e55b3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 96 additions and 1 deletions

View file

@ -0,0 +1,15 @@
# frozen_string_literal: true
class CreateGoodJobExecutionDuration < ActiveRecord::Migration[7.2]
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, :duration)
end
end
add_column :good_job_executions, :duration, :interval
end
end