Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/Illuminate/Queue/Console/BatchesTableCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class BatchesTableCommand extends Command
protected $composer;

/**
* Create a new failed queue jobs table command instance.
* Create a new batched queue jobs table command instance.
*
* @param \Illuminate\Filesystem\Filesystem $files
* @param \Illuminate\Support\Composer $composer
Expand Down Expand Up @@ -74,15 +74,15 @@ public function handle()
* @param string $table
* @return string
*/
protected function createBaseMigration($table = 'failed_jobs')
protected function createBaseMigration($table = 'job_batches')
{
return $this->laravel['migration.creator']->create(
'create_'.$table.'_table', $this->laravel->databasePath().'/migrations'
);
}

/**
* Replace the generated migration with the failed job table stub.
* Replace the generated migration with the batches job table stub.
*
* @param string $path
* @param string $table
Expand Down