优化数据文件

This commit is contained in:
邹景立 2022-10-13 14:46:30 +08:00
parent bffaeb75bb
commit bd0e87a1e7
3 changed files with 4 additions and 4 deletions

View File

@ -22,7 +22,7 @@ class SystemBase extends Migrator
->addColumn('type', 'string', ['limit' => 20, 'default' => '', 'comment' => '数据类型'])
->addColumn('code', 'string', ['limit' => 100, 'default' => '', 'comment' => '数据代码'])
->addColumn('name', 'string', ['limit' => 500, 'default' => '', 'comment' => '数据名称'])
->addColumn('content', 'text', ['limit' => 500, 'default' => '', 'comment' => '数据内容'])
->addColumn('content', 'text', ['default' => '', 'comment' => '数据内容'])
->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序权重'])
->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '状态(0禁用,1启用)'])
->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '删除(0正常,1已删)'])

View File

@ -20,7 +20,7 @@ class SystemData extends Migrator
'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-数据',
])
->addColumn('name', 'string', ['limit' => 100, 'default' => '', 'comment' => '配置名'])
->addColumn('value', 'text', ['limit' => 2048, 'default' => '', 'comment' => '配置值'])
->addColumn('value', 'text', ['default' => '', 'comment' => '配置值'])
->addIndex('type', ['name' => 'idx_system_data_name'])
->save();
}

View File

@ -23,12 +23,12 @@ class SystemQueue extends Migrator
->addColumn('title', 'string', ['limit' => 80, 'default' => '', 'comment' => '任务名称'])
->addColumn('command', 'string', ['limit' => 500, 'default' => '', 'comment' => '执行指令'])
->addColumn('exec_pid', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '执行进程'])
->addColumn('exec_data', 'text', ['limit' => 20, 'default' => 0, 'comment' => '执行参数'])
->addColumn('exec_data', 'text', ['default' => '', 'comment' => '执行参数'])
->addColumn('exec_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' => '循环时间'])
->addColumn('attempts', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '执行次数'])
->addColumn('rscript', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '任务类型(0单例,1多例)'])
->addColumn('rscript', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '任务类型(0单例,1多例)'])
->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '任务状态(1新任务,2处理中,3成功,4失败)'])
->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间'])
->addIndex('code', ['name' => 'idx_system_queue_code'])