Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 367b0ca + fdbfe86 commit 37fe941Copy full SHA for 37fe941
1 file changed
src/Illuminate/Queue/Console/stubs/failed_jobs.stub
@@ -1,5 +1,6 @@
1
<?php
2
3
+use Illuminate\Database\Schema\Blueprint;
4
use Illuminate\Database\Migrations\Migration;
5
6
class CreateFailedJobsTable extends Migration {
@@ -11,13 +12,13 @@ class CreateFailedJobsTable extends Migration {
11
12
*/
13
public function up()
14
{
- Schema::create('failed_jobs', function($t)
15
+ Schema::create('failed_jobs', function(Blueprint $table)
16
- $t->increments('id');
17
- $t->text('connection');
18
- $t->text('queue');
19
- $t->text('payload');
20
- $t->timestamp('failed_at');
+ $table->increments('id');
+ $table->text('connection');
+ $table->text('queue');
+ $table->text('payload');
21
+ $table->timestamp('failed_at');
22
});
23
}
24
0 commit comments