Skip to content
This repository was archived by the owner on Nov 5, 2025. It is now read-only.

Commit e9fa65c

Browse files
committed
use longText instead of text
Fixes #7
1 parent 9e14e76 commit e9fa65c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/migrations/2014_06_03_193005_create_queue_table.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public function up()
1818
$table->integer('status')->default(0);
1919
$table->integer('retries')->default(0);
2020
$table->integer('delay')->default(0);
21-
$table->text('payload')->nullable();
21+
$table->longText('payload')->nullable();
2222
$table->timestamps();
2323
});
2424
}
@@ -33,4 +33,4 @@ public function down()
3333
Schema::drop('laq_async_queue');
3434
}
3535

36-
}
36+
}

0 commit comments

Comments
 (0)