Update Ruby gems and Yarn packages.

This commit is contained in:
evazion
2022-01-10 11:12:03 -06:00
parent 104234126f
commit fd2db2ff23
9 changed files with 782 additions and 670 deletions

View File

@@ -0,0 +1,17 @@
# frozen_string_literal: true
class CreateGoodJobProcesses < ActiveRecord::Migration[7.0]
def change
reversible do |dir|
dir.up do
# Ensure this incremental update migration is idempotent
# with monolithic install migration.
return if connection.table_exists?(:good_job_processes)
end
end
create_table :good_job_processes, id: :uuid do |t|
t.timestamps
t.jsonb :state
end
end
end