Update Ruby gems and Yarn packages.
This commit is contained in:
17
db/migrate/20220110171023_create_good_job_processes.rb
Normal file
17
db/migrate/20220110171023_create_good_job_processes.rb
Normal 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
|
||||
Reference in New Issue
Block a user