From 4d820e1618b4de687a1d8e3e3ab740209945da24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Thu, 13 Oct 2022 12:01:15 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=95=B0=E6=8D=AE=E6=96=87?= =?UTF-8?q?=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../migrations/20221012144534_system_user.php | 52 +++++++++---------- .../migrations/20221013031925_system_auth.php | 29 +++++++++++ .../20221013032309_system_auth_node.php | 24 +++++++++ .../migrations/20221013032525_system_base.php | 35 +++++++++++++ .../20221013033419_system_config.php | 25 +++++++++ .../migrations/20221013033914_system_data.php | 23 ++++++++ .../migrations/20221013034059_system_file.php | 41 +++++++++++++++ .../migrations/20221013034618_system_menu.php | 33 ++++++++++++ 8 files changed, 234 insertions(+), 28 deletions(-) create mode 100644 database/migrations/20221013031925_system_auth.php create mode 100644 database/migrations/20221013032309_system_auth_node.php create mode 100644 database/migrations/20221013032525_system_base.php create mode 100644 database/migrations/20221013033419_system_config.php create mode 100644 database/migrations/20221013033914_system_data.php create mode 100644 database/migrations/20221013034059_system_file.php create mode 100644 database/migrations/20221013034618_system_menu.php diff --git a/database/migrations/20221012144534_system_user.php b/database/migrations/20221012144534_system_user.php index 048f57251..6060783c9 100644 --- a/database/migrations/20221012144534_system_user.php +++ b/database/migrations/20221012144534_system_user.php @@ -1,34 +1,20 @@ table('system_user1', ['comment' => '系统-用户', 'collation' => 'utf8mb4_general_ci']); + // 创建数据表 + $table = $this->table($this->name, [ + 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-用户', + ]); $table ->addColumn('usertype', 'string', ['limit' => 20, 'default' => '', 'comment' => '用户类型']) ->addColumn('username', 'string', ['limit' => 50, 'default' => '', 'comment' => '用户账号']) @@ -38,18 +24,28 @@ class SystemUser extends Migrator ->addColumn('authorize', 'string', ['limit' => 255, 'default' => '', 'comment' => '权限授权']) ->addColumn('contact_qq', 'string', ['limit' => 20, 'default' => '', 'comment' => '联系QQ']) ->addColumn('contact_mail', 'string', ['limit' => 20, 'default' => '', 'comment' => '联系邮箱']) - ->addColumn('contact_phone', 'string', ['limit' => 20, 'default' => '', 'comtent' => '联系手机']) + ->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', 'bigint', ['limit' => 20, 'default' => 0, 'comment' => '登录次数']) + ->addColumn('login_num', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '登录次数']) ->addColumn('describe', 'string', ['limit' => 255, 'default' => '', 'comment' => '备注说明']) - ->addColumn('status', 'bigint', ['limit' => 20, 'default' => 1, 'comment' => '状态(0禁用,1启用)']) - ->addColumn('sort', 'bigint', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) - ->addColumn('is_deleted', 'bigint', ['limit' => 20, 'default' => 0, 'comment' => '删除(1删除,0未删)']) + ->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('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) ->addIndex('status', ['name' => 'idx_system_user_status']) ->addIndex('username', ['name' => 'idx_system_user_username']) ->addIndex('is_deleted', ['name' => 'idx_system_user_deleted']) ->save(); + + // 初始化默认数据 + $data = [ + 'id' => 10000, + 'username' => 'admin', + 'nickname' => '超级管理员', + 'password' => '21232f297a57a5a743894a0e4a801fc3', + 'headimg' => 'https://thinkadmin.top/static/img/icon.png', + ]; + $table->insert($data)->saveData(); } } diff --git a/database/migrations/20221013031925_system_auth.php b/database/migrations/20221013031925_system_auth.php new file mode 100644 index 000000000..b78b3ade7 --- /dev/null +++ b/database/migrations/20221013031925_system_auth.php @@ -0,0 +1,29 @@ +table($this->name, [ + 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-权限', + ]) + ->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('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) + ->addIndex('sort', ['name' => 'idx_system_auth_sort']) + ->addIndex('title', ['name' => 'idx_system_auth_title']) + ->addIndex('status', ['name' => 'idx_system_auth_status']) + ->save(); + } +} diff --git a/database/migrations/20221013032309_system_auth_node.php b/database/migrations/20221013032309_system_auth_node.php new file mode 100644 index 000000000..d29bebffe --- /dev/null +++ b/database/migrations/20221013032309_system_auth_node.php @@ -0,0 +1,24 @@ +table($this->name, [ + 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-授权', + ]) + ->addColumn('auth', 'biginteger', ['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']) + ->save(); + } +} diff --git a/database/migrations/20221013032525_system_base.php b/database/migrations/20221013032525_system_base.php new file mode 100644 index 000000000..78ebb1b51 --- /dev/null +++ b/database/migrations/20221013032525_system_base.php @@ -0,0 +1,35 @@ +table($this->name, [ + 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-字典', + ]) + ->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('sort', 'biginteger', ['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' => '删除用户']) + ->addIndex('type', ['name' => 'idx_system_base_type']) + ->addIndex('code', ['name' => 'idx_system_base_code']) + ->addIndex('name', ['name' => 'idx_system_base_name']) + ->addIndex('sort', ['name' => 'idx_system_base_sort']) + ->addIndex('status', ['name' => 'idx_system_base_status']) + ->addIndex('deleted', ['name' => 'idx_system_base_deleted']) + ->save(); + } +} diff --git a/database/migrations/20221013033419_system_config.php b/database/migrations/20221013033419_system_config.php new file mode 100644 index 000000000..8080252b9 --- /dev/null +++ b/database/migrations/20221013033419_system_config.php @@ -0,0 +1,25 @@ +table($this->name, [ + 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-配置', + ]) + ->addColumn('type', 'string', ['limit' => 20, 'default' => '', 'comment' => '配置分类']) + ->addColumn('name', 'string', ['limit' => 100, 'default' => '', 'comment' => '配置名称']) + ->addColumn('value', 'string', ['limit' => 2048, 'default' => '', 'comment' => '配置内容']) + ->addIndex('type', ['name' => 'idx_system_config_type']) + ->addIndex('name', ['name' => 'idx_system_config_name']) + ->save(); + } +} diff --git a/database/migrations/20221013033914_system_data.php b/database/migrations/20221013033914_system_data.php new file mode 100644 index 000000000..7ed186676 --- /dev/null +++ b/database/migrations/20221013033914_system_data.php @@ -0,0 +1,23 @@ +table($this->name, [ + 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-数据', + ]) + ->addColumn('name', 'string', ['limit' => 100, 'default' => '', 'comment' => '配置名']) + ->addColumn('value', 'text', ['limit' => 2048, 'default' => '', 'comment' => '配置值']) + ->addIndex('type', ['name' => 'idx_system_data_name']) + ->save(); + } +} diff --git a/database/migrations/20221013034059_system_file.php b/database/migrations/20221013034059_system_file.php new file mode 100644 index 000000000..cd8475d23 --- /dev/null +++ b/database/migrations/20221013034059_system_file.php @@ -0,0 +1,41 @@ +table($this->name, [ + 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-文件', + ]) + ->addColumn('type', 'string', ['limit' => 20, 'default' => '', 'comment' => '上传类型']) + ->addColumn('hash', 'string', ['limit' => 32, 'default' => '', 'comment' => '文件哈希']) + ->addColumn('name', 'string', ['limit' => 200, 'default' => '', 'comment' => '文件名称']) + ->addColumn('xext', 'string', ['limit' => 100, 'default' => '', 'comment' => '文件后缀']) + ->addColumn('xurl', 'string', ['limit' => 500, 'default' => '', 'comment' => '访问链接']) + ->addColumn('xkey', 'string', ['limit' => 500, 'default' => '', 'comment' => '文件路径']) + ->addColumn('mime', 'string', ['limit' => 100, 'default' => '', 'comment' => '文件类型']) + ->addColumn('size', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '文件大小']) + ->addColumn('uuid', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '用户编号']) + ->addColumn('isfast', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '是否秒传']) + ->addColumn('status', 'integer', ['limit' => 20, 'default' => 1, 'comment' => '状态(0禁用,1启用)']) + ->addColumn('create_at', 'datetime', ['limit' => 20, 'default' => '', 'comment' => '创建时间']) + ->addColumn('update_at', 'datetime', ['limit' => 20, 'default' => 0, 'comment' => '更新时间']) + ->addIndex('type', ['name' => 'idx_system_file_type']) + ->addIndex('hash', ['name' => 'idx_system_file_hash']) + ->addIndex('uuid', ['name' => 'idx_system_file_uuid']) + ->addIndex('xext', ['name' => 'idx_system_file_xext']) + ->addIndex('status', ['name' => 'idx_system_file_status']) + ->addIndex('issafe', ['name' => 'idx_system_file_issafe']) + ->addIndex('isfast', ['name' => 'idx_system_file_isfast']) + ->save(); + } + +} diff --git a/database/migrations/20221013034618_system_menu.php b/database/migrations/20221013034618_system_menu.php new file mode 100644 index 000000000..e2f84a11d --- /dev/null +++ b/database/migrations/20221013034618_system_menu.php @@ -0,0 +1,33 @@ +table($this->name, [ + 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-菜单', + ]) + ->addColumn('pid', 'integer', ['limit' => 20, 'default' => 1, 'comment' => '上级编号']) + ->addColumn('title', 'string', ['limit' => 100, 'default' => '', 'comment' => '菜单名称']) + ->addColumn('icon', 'string', ['limit' => 100, 'default' => '', 'comment' => '菜单图标']) + ->addColumn('node', 'string', ['limit' => 100, 'default' => '', 'comment' => '节点代码']) + ->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('status', 'integer', ['limit' => 20, 'default' => 1, 'comment' => '状态(0禁用,1启用)']) + ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) + ->addIndex('pid', ['name' => 'idx_system_menu_pid']) + ->addIndex('sort', ['name' => 'idx_system_menu_sort']) + ->addIndex('status', ['name' => 'idx_system_menu_status']) + ->save(); + } +}