Table.php 1.21 KB
Newer Older
zazaname's avatar
zazaname committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
<?php

namespace think\queue\command;

use think\console\Command;
use think\helper\Str;
use think\migration\Creator;

class Table extends Command
{
    protected function configure()
    {
        $this->setName('queue:table')
            ->setDescription('Create a migration for the queue jobs database table');
    }

    public function handle()
    {
        if (!$this->app->has('migration.creator')) {
            $this->output->error('Install think-migration first please');
            return;
        }

        $table = $this->app->config->get('queue.connections.database.table');

        $className = Str::studly("create_{$table}_table");

        /** @var Creator $creator */
        $creator = $this->app->get('migration.creator');

        $path = $creator->create($className);

        // Load the alternative template if it is defined.
        $contents = file_get_contents(__DIR__ . '/stubs/jobs.stub');

        // inject the class names appropriate to this migration
        $contents = strtr($contents, [
            'CreateJobsTable' => $className,
            '{{table}}'       => $table,
        ]);

        file_put_contents($path, $contents);

        $this->output->info('Migration created successfully!');
    }
}