diff --git a/database/migrations/20221013032525_system_base.php b/database/migrations/20221013032525_system_base.php index 3ccf1e922..4e3cfa214 100644 --- a/database/migrations/20221013032525_system_base.php +++ b/database/migrations/20221013032525_system_base.php @@ -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已删)']) diff --git a/database/migrations/20221013033914_system_data.php b/database/migrations/20221013033914_system_data.php index 26b6493d8..5f76189b4 100644 --- a/database/migrations/20221013033914_system_data.php +++ b/database/migrations/20221013033914_system_data.php @@ -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(); } diff --git a/database/migrations/20221013045619_system_queue.php b/database/migrations/20221013045619_system_queue.php index 7ab9bfadd..fa9a0d698 100644 --- a/database/migrations/20221013045619_system_queue.php +++ b/database/migrations/20221013045619_system_queue.php @@ -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'])