| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
- namespace App\Console\Commands;
- use Illuminate\Console\Command;
- class UpgradeAt20230227 extends Command
- {
- /**
- * The name and signature of the console command.
- *
- * @var string
- */
- protected $signature = 'upgrade:at20230227';
- /**
- * The console command description.
- *
- * @var string
- */
- protected $description = 'update to 2.0';
- /**
- * Create a new command instance.
- *
- * @return void
- */
- public function __construct()
- {
- parent::__construct();
- }
- /**
- * Execute the console command.
- *
- * @return int
- */
- public function handle()
- {
- if(\App\Tools\Tools::isStop()){
- return 0;
- }
- $this->call('init:system.channel');
- $this->call('init:system.dict');
- $this->call('upgrade:dict');
- $this->call('upgrade:dict.vocabulary');
- $this->call('upgrade:dict.default.meaning');
- //语料库
- $this->call('init:cs6sentence');
- $this->call('upgrade:palitext');
- $this->call('upgrade:wbw.template');
- $this->call('upgrade:related.paragraph');
- $this->call('upgrade:fts',['--content'=>true]);
- $this->call('upgrade:pcd.book.id');
- return 0;
- }
- }
|