修改数据库

This commit is contained in:
邹景立 2022-10-13 19:52:42 +08:00
parent c67ced5b54
commit ef35f1d616
2 changed files with 3 additions and 2 deletions

View File

@ -285,11 +285,12 @@ SQL
'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-任务',
])
->addColumn('code', 'string', ['limit' => 20, 'default' => '', 'comment' => '任务编号'])
->addColumn('title', 'string', ['limit' => 80, 'default' => '', 'comment' => '任务名称'])
->addColumn('title', 'string', ['limit' => 100, 'default' => '', 'comment' => '任务名称'])
->addColumn('command', 'string', ['limit' => 500, 'default' => '', 'comment' => '执行指令'])
->addColumn('exec_pid', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '执行进程'])
->addColumn('exec_data', 'text', ['default' => '', 'comment' => '执行参数'])
->addColumn('exec_time', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '执行时间'])
->addColumn('exec_desc', 'string', ['limit' => 500, 'default' => '', 'comment' => '执行描述'])
->addColumn('enter_time', 'decimal', ['precision' => 20, 'scale' => 4, 'default' => 0, 'comment' => '开始时间'])
->addColumn('outer_time', 'decimal', ['precision' => 20, 'scale' => 4, 'default' => 0, 'comment' => '结束时间'])
->addColumn('loops_time', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '循环时间'])

View File

@ -26,7 +26,7 @@ class InstallShop extends Migrator
// 创建数据表,存在则跳过
$this->hasTable($table) || $this->table($table, [
'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '',
'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '商城-商品-主体',
])
->addColumn('code', 'string', ['limit' => 20, 'default' => '', 'comment' => '商品编号'])
->addColumn('name', 'string', ['limit' => 500, 'default' => '', 'comment' => '商品名称'])