upgrade fixes

This commit is contained in:
Saeed Vaziry
2024-03-23 15:33:36 +01:00
parent 6389e592a4
commit 6529c349b1
5 changed files with 9 additions and 9 deletions

View File

@ -12,10 +12,10 @@ public function up(): void
$table->bigIncrements('id');
$table->string('queue')->index();
$table->longText('payload');
$table->unsignedTinyInteger('attempts');
$table->unsignedInteger('reserved_at')->nullable();
$table->unsignedInteger('available_at');
$table->unsignedInteger('created_at');
$table->integer('attempts');
$table->integer('reserved_at')->nullable();
$table->integer('available_at');
$table->integer('created_at');
});
}