Update dependencies (#28)
All checks were successful
Deploy / deploy (push) Successful in 3m37s
All checks were successful
Deploy / deploy (push) Successful in 3m37s
Reviewed-on: #28
This commit is contained in:
parent
bdfda77603
commit
9227fad48a
3 changed files with 57 additions and 21 deletions
|
@ -0,0 +1,21 @@
|
|||
# This migration comes from solid_queue (originally 20240719134516)
|
||||
class CreateRecurringTasks < ActiveRecord::Migration[7.1]
|
||||
def change
|
||||
create_table :solid_queue_recurring_tasks do |t|
|
||||
t.string :key, null: false, index: { unique: true }
|
||||
t.string :schedule, null: false
|
||||
t.string :command, limit: 2048
|
||||
t.string :class_name
|
||||
t.text :arguments
|
||||
|
||||
t.string :queue_name
|
||||
t.integer :priority, default: 0
|
||||
|
||||
t.boolean :static, default: true, index: true
|
||||
|
||||
t.text :description
|
||||
|
||||
t.timestamps
|
||||
end
|
||||
end
|
||||
end
|
18
db/schema.rb
generated
18
db/schema.rb
generated
|
@ -10,7 +10,7 @@
|
|||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema[8.0].define(version: 2024_07_27_022931) do
|
||||
ActiveRecord::Schema[8.0].define(version: 2024_08_17_015831) do
|
||||
create_table "credit_card_bills", force: :cascade do |t|
|
||||
t.string "description"
|
||||
t.decimal "amount"
|
||||
|
@ -127,6 +127,22 @@ ActiveRecord::Schema[8.0].define(version: 2024_07_27_022931) do
|
|||
t.index ["task_key", "run_at"], name: "index_solid_queue_recurring_executions_on_task_key_and_run_at", unique: true
|
||||
end
|
||||
|
||||
create_table "solid_queue_recurring_tasks", force: :cascade do |t|
|
||||
t.string "key", null: false
|
||||
t.string "schedule", null: false
|
||||
t.string "command", limit: 2048
|
||||
t.string "class_name"
|
||||
t.text "arguments"
|
||||
t.string "queue_name"
|
||||
t.integer "priority", default: 0
|
||||
t.boolean "static", default: true
|
||||
t.text "description"
|
||||
t.datetime "created_at", null: false
|
||||
t.datetime "updated_at", null: false
|
||||
t.index ["key"], name: "index_solid_queue_recurring_tasks_on_key", unique: true
|
||||
t.index ["static"], name: "index_solid_queue_recurring_tasks_on_static"
|
||||
end
|
||||
|
||||
create_table "solid_queue_scheduled_executions", force: :cascade do |t|
|
||||
t.integer "job_id", null: false
|
||||
t.string "queue_name", null: false
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue