Sha256: 7e3567a1e0e685ab530b4f9a4db4f8ece016c719d66ab184988d557fdb500340

Contents?: true

Size: 1.04 KB

Versions: 9

Compression:

Stored size: 1.04 KB

Contents

class CreateGoodJobs < ActiveRecord::Migration[5.2]
  def change
    enable_extension 'pgcrypto'

    create_table :good_jobs, id: :uuid do |t|
      t.text :queue_name
      t.integer :priority
      t.jsonb :serialized_params
      t.timestamp :scheduled_at
      t.timestamp :performed_at
      t.timestamp :finished_at
      t.text :error

      t.timestamps

      t.uuid :active_job_id
      t.text :concurrency_key
      t.text :cron_key
    end

    add_index :good_jobs, :scheduled_at, where: "(finished_at IS NULL)", name: "index_good_jobs_on_scheduled_at"
    add_index :good_jobs, [:queue_name, :scheduled_at], where: "(finished_at IS NULL)", name: :index_good_jobs_on_queue_name_and_scheduled_at
    add_index :good_jobs, [:active_job_id, :created_at], name: :index_good_jobs_on_active_job_id_and_created_at
    add_index :good_jobs, :concurrency_key, where: "(finished_at IS NULL)", name: :index_good_jobs_on_concurrency_key_when_unfinished
    add_index :good_jobs, [:cron_key, :created_at], name: :index_good_jobs_on_cron_key_and_created_at
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
good_job-1.12.2 lib/generators/good_job/templates/install/migrations/create_good_jobs.rb.erb
good_job-1.12.1 lib/generators/good_job/templates/install/migrations/create_good_jobs.rb.erb
good_job-1.12.0 lib/generators/good_job/templates/install/migrations/create_good_jobs.rb.erb
good_job-1.11.3 lib/generators/good_job/templates/install/migrations/create_good_jobs.rb.erb
good_job-1.11.2 lib/generators/good_job/templates/install/migrations/create_good_jobs.rb.erb
good_job-1.11.1 lib/generators/good_job/templates/install/migrations/create_good_jobs.rb.erb
good_job-1.11.0 lib/generators/good_job/templates/install/migrations/create_good_jobs.rb.erb
good_job-1.10.1 lib/generators/good_job/templates/install/migrations/create_good_jobs.rb.erb
good_job-1.10.0 lib/generators/good_job/templates/install/migrations/create_good_jobs.rb.erb