18 lines
595 B
Ruby
18 lines
595 B
Ruby
# frozen_string_literal: true
|
|
|
|
# This migration comes from solid_queue (originally 20240218110712)
|
|
class CreateRecurringExecutions < ActiveRecord::Migration[7.1]
|
|
def change
|
|
create_table :solid_queue_recurring_executions do |t|
|
|
t.references :job, index: { unique: true }, null: false
|
|
t.string :task_key, null: false
|
|
t.datetime :run_at, null: false
|
|
t.datetime :created_at, null: false
|
|
|
|
t.index [ :task_key, :run_at ], unique: true
|
|
end
|
|
|
|
add_foreign_key :solid_queue_recurring_executions, :solid_queue_jobs, column: :job_id, on_delete: :cascade
|
|
end
|
|
end
|