Skip to content

Commit d6bdb0f

Browse files
Cut the size of the job_class field back 1024 => 255
1 parent 747a5d6 commit d6bdb0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/resources/database/migrations/2024_11_12_120632_create_job_executions_table.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public function up(): void
1111
{
1212
Schema::create('job_executions', function (Blueprint $table) {
1313
$table->id();
14-
$table->string('job_class', 1024);
14+
$table->string('job_class');
1515
$table->uuid('job_uuid')->nullable();
1616
$table->string('tracking_id', 22)->unique();
1717
$table->intOrBigIntBasedOnRelated('user_id', Schema::connection(null), 'users.id')->nullable();

0 commit comments

Comments
 (0)