diff --git a/database/migrations/20221013031925_system_auth.php b/database/migrations/20221013031925_system_auth.php index b78b3ade7..b04e3046b 100644 --- a/database/migrations/20221013031925_system_auth.php +++ b/database/migrations/20221013031925_system_auth.php @@ -18,8 +18,8 @@ class SystemAuth extends Migrator ->addColumn('title', 'string', ['limit' => 80, 'default' => '', 'comment' => '权限名称']) ->addColumn('utype', 'string', ['limit' => 50, 'default' => '', 'comment' => '身份权限']) ->addColumn('desc', 'string', ['limit' => 500, 'default' => '', 'comment' => '备注说明']) - ->addColumn('sort', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) - ->addColumn('status', 'biginteger', ['limit' => 20, 'default' => 1, 'comment' => '状态(0禁用,1启用)']) + ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) + ->addColumn('status', 'integer', ['limit' => 20, 'default' => 1, 'comment' => '状态(0禁用,1启用)']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) ->addIndex('sort', ['name' => 'idx_system_auth_sort']) ->addIndex('title', ['name' => 'idx_system_auth_title']) diff --git a/database/migrations/20221013032309_system_auth_node.php b/database/migrations/20221013032309_system_auth_node.php index d29bebffe..c66bbe1ce 100644 --- a/database/migrations/20221013032309_system_auth_node.php +++ b/database/migrations/20221013032309_system_auth_node.php @@ -15,7 +15,7 @@ class SystemAuthNode extends Migrator $this->table($this->name, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-授权', ]) - ->addColumn('auth', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '角色']) + ->addColumn('auth', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '角色']) ->addColumn('node', 'string', ['limit' => 200, 'default' => '', 'comment' => '节点']) ->addIndex('auth', ['name' => 'idx_system_auth_node_title']) ->addIndex('auth', ['name' => 'idx_system_auth_node_status']) diff --git a/database/migrations/20221013032525_system_base.php b/database/migrations/20221013032525_system_base.php index 78ebb1b51..924e255ff 100644 --- a/database/migrations/20221013032525_system_base.php +++ b/database/migrations/20221013032525_system_base.php @@ -19,11 +19,11 @@ class SystemBase extends Migrator ->addColumn('code', 'string', ['limit' => 100, 'default' => '', 'comment' => '数据代码']) ->addColumn('name', 'string', ['limit' => 500, 'default' => '', 'comment' => '数据名称']) ->addColumn('content', 'text', ['limit' => 500, 'default' => '', 'comment' => '数据内容']) - ->addColumn('sort', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) + ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) ->addColumn('status', 'integer', ['limit' => 20, 'default' => 1, 'comment' => '状态(0禁用,1启用)']) ->addColumn('deleted', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '删除(0正常,1已删)']) ->addColumn('deleted_at', 'string', ['limit' => 20, 'default' => '', 'comment' => '删除时间']) - ->addColumn('deleted_by', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '删除用户']) + ->addColumn('deleted_by', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '删除用户']) ->addIndex('type', ['name' => 'idx_system_base_type']) ->addIndex('code', ['name' => 'idx_system_base_code']) ->addIndex('name', ['name' => 'idx_system_base_name']) diff --git a/database/migrations/20221013034618_system_menu.php b/database/migrations/20221013034618_system_menu.php index 0ab857c57..21e3f7407 100644 --- a/database/migrations/20221013034618_system_menu.php +++ b/database/migrations/20221013034618_system_menu.php @@ -22,7 +22,7 @@ class SystemMenu extends Migrator ->addColumn('url', 'string', ['limit' => 500, 'default' => '', 'comment' => '链接节点']) ->addColumn('params', 'string', ['limit' => 500, 'default' => '', 'comment' => '链接参数']) ->addColumn('target', 'string', ['limit' => 20, 'default' => '_self', 'comment' => '打开方式']) - ->addColumn('sort', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) + ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) ->addColumn('status', 'integer', ['limit' => 20, 'default' => 1, 'comment' => '状态(0禁用,1启用)']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) ->addIndex('pid', ['name' => 'idx_system_menu_pid']) diff --git a/database/migrations/20221013045331_system_oplog.php b/database/migrations/20221013045331_system_oplog.php new file mode 100644 index 000000000..0c0b921ae --- /dev/null +++ b/database/migrations/20221013045331_system_oplog.php @@ -0,0 +1,26 @@ +table($this->name, [ + 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-日志', + ]) + ->addColumn('node', 'string', ['limit' => 200, 'default' => '', 'comment' => '当前操作节点']) + ->addColumn('geoip', 'string', ['limit' => 20, 'default' => '', 'comment' => '操作者IP地址']) + ->addColumn('action', 'string', ['limit' => 200, 'default' => '', 'comment' => '操作行为名称']) + ->addColumn('content', 'string', ['limit' => 1024, 'default' => '', 'comment' => '操作内容描述']) + ->addColumn('username', 'string', ['limit' => 50, 'default' => '', 'comment' => '操作人用户名']) + ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) + ->save(); + } +} diff --git a/database/migrations/20221013045619_system_queue.php b/database/migrations/20221013045619_system_queue.php new file mode 100644 index 000000000..73b62d61d --- /dev/null +++ b/database/migrations/20221013045619_system_queue.php @@ -0,0 +1,37 @@ +table($this->name, [ + 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-任务', + ]) + ->addColumn('code', 'string', ['limit' => 20, 'default' => '', 'comment' => '任务编号']) + ->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_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', 'string', ['limit' => 500, 'default' => '', 'comment' => '执行次数']) + ->addColumn('rscript', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '任务类型(0单例,1多例)']) + ->addColumn('status', 'integer', ['limit' => 20, 'default' => 1, 'comment' => '任务状态(1新任务,2处理中,3成功,4失败)']) + ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) + ->addIndex('code', ['name' => 'idx_system_queue_code']) + ->addIndex('title', ['name' => 'idx_system_queue_title']) + ->addIndex('status', ['name' => 'idx_system_queue_status']) + ->addIndex('exec_time', ['name' => 'idx_system_queue_exec_time']) + ->addIndex('create_at', ['name' => 'idx_system_queue_create_at']) + ->save(); + } +} diff --git a/database/migrations/20221012144534_system_user.php b/database/migrations/20221013045828_system_user.php similarity index 83% rename from database/migrations/20221012144534_system_user.php rename to database/migrations/20221013045828_system_user.php index 27736a3e4..939e62678 100644 --- a/database/migrations/20221012144534_system_user.php +++ b/database/migrations/20221013045828_system_user.php @@ -27,11 +27,11 @@ class SystemUser extends Migrator ->addColumn('contact_phone', 'string', ['limit' => 20, 'default' => '', 'comment' => '联系手机']) ->addColumn('login_ip', 'string', ['limit' => 20, 'default' => '', 'comment' => '登录地址']) ->addColumn('login_at', 'string', ['limit' => 20, 'default' => '', 'comment' => '登录时间']) - ->addColumn('login_num', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '登录次数']) + ->addColumn('login_num', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '登录次数']) ->addColumn('describe', 'string', ['limit' => 255, 'default' => '', 'comment' => '备注说明']) - ->addColumn('status', 'biginteger', ['limit' => 20, 'default' => 1, 'comment' => '状态(0禁用,1启用)']) - ->addColumn('sort', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) - ->addColumn('is_deleted', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '删除(1删除,0未删)']) + ->addColumn('status', 'integer', ['limit' => 20, 'default' => 1, 'comment' => '状态(0禁用,1启用)']) + ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) + ->addColumn('is_deleted', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '删除(1删除,0未删)']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) ->addIndex('status', ['name' => 'idx_system_user_status']) ->addIndex('username', ['name' => 'idx_system_user_username'])