mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 15:32:48 +08:00
feat(command): 新增数据库调试命令行工具集
This commit is contained in:
@@ -3,6 +3,12 @@
|
||||
namespace think;
|
||||
|
||||
use app\common\command\admin\MigrateFileData;
|
||||
use app\common\command\tools\db\ToolsDbCount;
|
||||
use app\common\command\tools\db\ToolsDbDesc;
|
||||
use app\common\command\tools\db\ToolsDbExecute;
|
||||
use app\common\command\tools\db\ToolsDbInfo;
|
||||
use app\common\command\tools\db\ToolsDbQuery;
|
||||
use app\common\command\tools\db\ToolsDbTable;
|
||||
use app\common\command\Test;
|
||||
use app\common\event\AdminLoginSuccess\LogEvent;
|
||||
use app\common\event\AdminLoginType\DemoEvent;
|
||||
@@ -51,7 +57,13 @@ class UlthonAdminService extends Service
|
||||
// 绑定命令行
|
||||
$this->commands([
|
||||
Test::class,
|
||||
MigrateFileData::class
|
||||
MigrateFileData::class,
|
||||
ToolsDbQuery::class,
|
||||
ToolsDbExecute::class,
|
||||
ToolsDbTable::class,
|
||||
ToolsDbInfo::class,
|
||||
ToolsDbDesc::class,
|
||||
ToolsDbCount::class,
|
||||
]);
|
||||
|
||||
// 绑定标识容器
|
||||
|
||||
Reference in New Issue
Block a user