38 lines
930 B
PHP
38 lines
930 B
PHP
<?php
|
|
|
|
namespace app\command;
|
|
|
|
use Monolog\Formatter\MongoDBFormatter;
|
|
use Symfony\Component\Console\Command\Command;
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
use Symfony\Component\Console\Input\InputOption;
|
|
use Symfony\Component\Console\Input\InputArgument;
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
use support\think\Db;
|
|
|
|
|
|
class createIndex extends Command
|
|
{
|
|
protected static $defaultName = 'createIndex';
|
|
protected static $defaultDescription = 'createIndex';
|
|
|
|
/**
|
|
* @return void
|
|
*/
|
|
protected function configure()
|
|
{
|
|
$this->addArgument('name', InputArgument::OPTIONAL, 'Name description');
|
|
}
|
|
|
|
/**
|
|
* @param InputInterface $input
|
|
* @param OutputInterface $output
|
|
* @return int
|
|
*/
|
|
protected function execute(InputInterface $input, OutputInterface $output): int
|
|
{
|
|
\app\model\BalanceLog::createindex();
|
|
return 0;
|
|
}
|
|
}
|