Skip to content

Commit 8f7d0df

Browse files
committed
Use text so the jobs store properly on mysql
1 parent 1070078 commit 8f7d0df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

db/migrate/20240131013203_create_solid_queue_batch_table.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ class CreateSolidQueueBatchTable < ActiveRecord::Migration[7.1]
22
def change
33
create_table :solid_queue_job_batches do |t|
44
t.references :job, index: { unique: true }
5-
t.string :on_finish_active_job
6-
t.string :on_success_active_job
5+
t.text :on_finish_active_job
6+
t.text :on_success_active_job
77
t.datetime :finished_at
88
t.datetime :changed_at
99
t.datetime :last_changed_at

0 commit comments

Comments
 (0)