![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/rentpix.corals.io/vendor/orchestra/canvas/src/Console/ |
<?php namespace Orchestra\Canvas\Console; use Illuminate\Filesystem\Filesystem; use Illuminate\Support\Composer; use Orchestra\Canvas\Core\Concerns\MigrationGenerator; use Symfony\Component\Console\Attribute\AsCommand; /** * @see https://github.com/laravel/framework/blob/9.x/src/Illuminate/Queue/Console/BatchesTableCommand.php */ #[AsCommand(name: 'queue:batches-table', description: 'Create a migration for the batches database table')] class BatchesTableCommand extends \Illuminate\Queue\Console\BatchesTableCommand { use MigrationGenerator; /** * Create a new notifications table command instance. * * @param \Illuminate\Filesystem\Filesystem $files * @param \Illuminate\Support\Composer $composer * @return void */ public function __construct(Filesystem $files, Composer $composer) { parent::__construct($files, $composer); $this->addGeneratorPresetOptions(); } /** * Create a base migration file for the table. * * @param string $table * @return string */ protected function createBaseMigration($table = 'job_batches') { return $this->createBaseMigrationUsingCanvas($table); } }