Sha256: 5a5844b0225649f5e6293fb640b71578f21c8ee2e794c7e2e550a02cf2955b20
Contents?: true
Size: 548 Bytes
Versions: 7
Compression:
Stored size: 548 Bytes
Contents
class CreateActiveJobLogJobs < ActiveRecord::Migration[5.2] def change create_table :active_job_log_jobs do |t| t.string :job_id, index: true t.text :params t.string :status t.string :job_class t.text :error t.text :stack_trace t.datetime :queued_at t.datetime :started_at t.datetime :ended_at t.integer :queued_duration t.integer :execution_duration t.integer :total_duration t.integer :executions t.string :queue_name t.timestamps end end end
Version data entries
7 entries across 7 versions & 1 rubygems