Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 37fe941

Browse files
committed
working on conflicts.
2 parents 367b0ca + fdbfe86 commit 37fe941

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

src/Illuminate/Queue/Console/stubs/failed_jobs.stub

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?php
22

3+
use Illuminate\Database\Schema\Blueprint;
34
use Illuminate\Database\Migrations\Migration;
45

56
class CreateFailedJobsTable extends Migration {
@@ -11,13 +12,13 @@ class CreateFailedJobsTable extends Migration {
1112
*/
1213
public function up()
1314
{
14-
Schema::create('failed_jobs', function($t)
15+
Schema::create('failed_jobs', function(Blueprint $table)
1516
{
16-
$t->increments('id');
17-
$t->text('connection');
18-
$t->text('queue');
19-
$t->text('payload');
20-
$t->timestamp('failed_at');
17+
$table->increments('id');
18+
$table->text('connection');
19+
$table->text('queue');
20+
$table->text('payload');
21+
$table->timestamp('failed_at');
2122
});
2223
}
2324

0 commit comments

Comments
 (0)