From ad17150edb54be8488f1ab12fa2a840f1ace314f 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 19:05:23 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=95=B0=E6=8D=AE=E5=BA=93?= =?UTF-8?q?=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../migrations/20221013031925_system_auth.php | 8 +- .../20221013032309_system_auth_node.php | 12 +-- .../migrations/20221013032525_system_base.php | 12 +-- .../20221013033419_system_config.php | 81 +++++++------- .../migrations/20221013033914_system_data.php | 12 +-- .../migrations/20221013034059_system_file.php | 13 +-- .../migrations/20221013034618_system_menu.php | 102 +++++++++--------- .../20221013045331_system_oplog.php | 4 +- .../20221013045619_system_queue.php | 5 +- .../migrations/20221013045828_system_user.php | 17 ++- 10 files changed, 118 insertions(+), 148 deletions(-) diff --git a/database/migrations/20221013031925_system_auth.php b/database/migrations/20221013031925_system_auth.php index f8deb94a2..6a1a27900 100644 --- a/database/migrations/20221013031925_system_auth.php +++ b/database/migrations/20221013031925_system_auth.php @@ -12,12 +12,8 @@ class SystemAuth extends Migrator // 当前操作 $table = 'system_auth'; - // 存在则跳过 - if ($this->hasTable($table)) { - return; - } - // 创建数据表 - $this->table($table, [ + // 创建数据表,存在则跳过 + $this->hasTable($table) || $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-权限', ]) ->addColumn('title', 'string', ['limit' => 80, 'default' => '', 'comment' => '权限名称']) diff --git a/database/migrations/20221013032309_system_auth_node.php b/database/migrations/20221013032309_system_auth_node.php index 98d2a6051..55506c4fd 100644 --- a/database/migrations/20221013032309_system_auth_node.php +++ b/database/migrations/20221013032309_system_auth_node.php @@ -7,16 +7,12 @@ use think\migration\Migrator; */ class SystemAuthNode extends Migrator { - private $name = 'system_auth_node'; - public function change() { - // 存在则跳过 - if ($this->hasTable($this->name)) { - return; - } - // 创建数据表 - $this->table($this->name, [ + // 当前操作 + $table = 'system_auth_node'; + // 创建数据表,存在则跳过 + $this->hasTable($table) || $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-授权', ]) ->addColumn('auth', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '角色编号']) diff --git a/database/migrations/20221013032525_system_base.php b/database/migrations/20221013032525_system_base.php index 4e3cfa214..2594e8670 100644 --- a/database/migrations/20221013032525_system_base.php +++ b/database/migrations/20221013032525_system_base.php @@ -7,16 +7,12 @@ use think\migration\Migrator; */ class SystemBase extends Migrator { - private $name = 'system_base'; - public function change() { - // 存在则跳过 - if ($this->hasTable($this->name)) { - return; - } - // 创建数据表 - $this->table($this->name, [ + // 当前操作 + $table = 'system_base'; + // 创建数据表,存在则跳过 + $this->hasTable($table) || $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-字典', ]) ->addColumn('type', 'string', ['limit' => 20, 'default' => '', 'comment' => '数据类型']) diff --git a/database/migrations/20221013033419_system_config.php b/database/migrations/20221013033419_system_config.php index 3a7821f55..99acf124d 100644 --- a/database/migrations/20221013033419_system_config.php +++ b/database/migrations/20221013033419_system_config.php @@ -7,51 +7,48 @@ use think\migration\Migrator; */ class SystemConfig extends Migrator { - private $name = 'system_config'; - public function change() { - // 存在则跳过 - if ($this->hasTable($this->name)) { - return; - } - // 创建数据表 - $this->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(); + // 当前操作 + $table = 'system_config'; + // 创建数据表,存在则跳过 + if (!$this->hasTable($table)) { + $this->table($table, [ + '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(); - // 初始化配置信息 - $this->execute(<<name} VALUES (1, 'base', 'app_name', 'ThinkAdmin'); -INSERT INTO {$this->name} VALUES (2, 'base', 'app_version', 'v6'); -INSERT INTO {$this->name} VALUES (3, 'base', 'beian', ''); -INSERT INTO {$this->name} VALUES (4, 'base', 'editor', 'ckeditor5'); -INSERT INTO {$this->name} VALUES (5, 'base', 'login_image', ''); -INSERT INTO {$this->name} VALUES (6, 'base', 'login_name', '系统管理'); -INSERT INTO {$this->name} VALUES (7, 'base', 'miitbeian', ''); -INSERT INTO {$this->name} VALUES (8, 'base', 'site_copy', '©版权所有 2014-2022 楚才科技'); -INSERT INTO {$this->name} VALUES (9, 'base', 'site_host', ''); -INSERT INTO {$this->name} VALUES (10, 'base', 'site_icon', 'https://v6.thinkadmin.top/upload/4b/5a423974e447d5502023f553ed370f.png'); -INSERT INTO {$this->name} VALUES (11, 'base', 'site_name', 'ThinkAdmin'); -INSERT INTO {$this->name} VALUES (12, 'base', 'site_theme', 'default'); -INSERT INTO {$this->name} VALUES (13, 'base', 'xpath', 'admin'); -INSERT INTO {$this->name} VALUES (14, 'storage', 'alioss_http_protocol', 'http'); -INSERT INTO {$this->name} VALUES (15, 'storage', 'allow_exts', 'doc,gif,ico,jpg,mp3,mp4,p12,pem,png,zip,rar,xls,xlsx'); -INSERT INTO {$this->name} VALUES (16, 'storage', 'link_type', 'none'); -INSERT INTO {$this->name} VALUES (17, 'storage', 'local_http_domain', ''); -INSERT INTO {$this->name} VALUES (18, 'storage', 'local_http_protocol', 'follow'); -INSERT INTO {$this->name} VALUES (19, 'storage', 'name_type', 'xmd5'); -INSERT INTO {$this->name} VALUES (20, 'storage', 'type', 'local'); -INSERT INTO {$this->name} VALUES (21, 'wechat', 'type', 'api'); -INSERT INTO {$this->name} VALUES (22, 'storage', 'qiniu_http_protocol', 'http'); + // 初始化配置信息 + $this->execute(<<hasTable($this->name)) { - return; - } - // 创建数据表 - $this->table($this->name, [ + // 当前操作 + $table = 'system_data'; + // 创建数据表,存在则跳过 + $this->hasTable($table) || $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-数据', ]) ->addColumn('name', 'string', ['limit' => 100, 'default' => '', 'comment' => '配置名']) diff --git a/database/migrations/20221013034059_system_file.php b/database/migrations/20221013034059_system_file.php index 3cfa19e9d..2d440d309 100644 --- a/database/migrations/20221013034059_system_file.php +++ b/database/migrations/20221013034059_system_file.php @@ -7,16 +7,12 @@ use think\migration\Migrator; */ class SystemFile extends Migrator { - private $name = 'system_file'; - public function change() { - // 存在则跳过 - if ($this->hasTable($this->name)) { - return; - } - // 创建数据表 - $this->table($this->name, [ + // 当前操作 + $table = 'system_file'; + // 创建数据表,存在则跳过 + $this->hasTable($table) || $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-文件', ]) ->addColumn('type', 'string', ['limit' => 20, 'default' => '', 'comment' => '上传类型']) @@ -41,5 +37,4 @@ class SystemFile extends Migrator ->addIndex('isfast', ['name' => 'idx_system_file_isfast']) ->save(); } - } diff --git a/database/migrations/20221013034618_system_menu.php b/database/migrations/20221013034618_system_menu.php index 98128c3c1..745ed469d 100644 --- a/database/migrations/20221013034618_system_menu.php +++ b/database/migrations/20221013034618_system_menu.php @@ -7,16 +7,16 @@ use think\migration\Migrator; */ class SystemMenu extends Migrator { - private $name = 'system_menu'; - public function change() { + // 当前操作 + $table = 'system_menu'; + // 存在则跳过 - if ($this->hasTable($this->name)) { - return; - } + if ($this->hasTable($table)) return; + // 创建数据表 - $this->table($this->name, [ + $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-菜单', ]) ->addColumn('pid', 'integer', ['limit' => 20, 'default' => 1, 'comment' => '上级编号']) @@ -36,51 +36,51 @@ class SystemMenu extends Migrator // 初始化菜单数据 $this->execute(<<name} VALUES (1, 0, '控制台', '', '', '#', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (2, 1, '数据管理', '', '', '#', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (3, 2, '数据统计报表', 'layui-icon layui-icon-theme', 'data/total.portal/index', 'data/total.portal/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (4, 2, '轮播图片管理', 'layui-icon layui-icon-carousel', 'data/base.slider/index', 'data/base.slider/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (5, 2, '页面内容管理', 'layui-icon layui-icon-read', 'data/base.pager/index', 'data/base.pager/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (6, 2, '文章内容管理', 'layui-icon layui-icon-template', 'data/news.item/index', 'data/news.item/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (7, 2, '支付参数管理', 'layui-icon layui-icon-rmb', 'data/base.payment/index', 'data/base.payment/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (8, 2, '系统通知管理', 'layui-icon layui-icon-notice', 'data/base.message/index', 'data/base.message/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (9, 2, '微信小程序配置', 'layui-icon layui-icon-set', 'data/base.config/wxapp', 'data/base.config/wxapp', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (10, 2, '邀请二维码设置', 'layui-icon layui-icon-cols', 'data/base.config/cropper', 'data/base.config/cropper', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (11, 1, '用户管理', '', '', '#', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (12, 11, '会员用户管理', 'layui-icon layui-icon-user', 'data/user.admin/index', 'data/user.admin/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (13, 11, '余额充值管理', 'layui-icon layui-icon-rmb', 'data/user.balance/index', 'data/user.balance/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (14, 11, '用户返利管理', 'layui-icon layui-icon-transfer', 'data/user.rebate/index', 'data/user.rebate/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (15, 11, '用户提现管理', 'layui-icon layui-icon-component', 'data/user.transfer/index', 'data/user.transfer/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (16, 11, '用户等级管理', 'layui-icon layui-icon-senior', 'data/base.upgrade/index', 'data/base.upgrade/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (17, 11, '用户折扣方案', 'layui-icon layui-icon-set', 'data/base.discount/index', 'data/base.discount/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (18, 1, '商城管理', '', '', '#', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (19, 18, '商品数据管理', 'layui-icon layui-icon-star', 'data/shop.goods/index', 'data/shop.goods/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (20, 18, '商品分类管理', 'layui-icon layui-icon-tabs', 'data/shop.cate/index', 'data/shop.cate/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (21, 18, '订单数据管理', 'layui-icon layui-icon-template', 'data/shop.order/index', 'data/shop.order/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (22, 18, '订单发货管理', 'layui-icon layui-icon-transfer', 'data/shop.send/index', 'data/shop.send/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (23, 18, '快递公司管理', 'layui-icon layui-icon-website', 'data/base.postage.company/index', 'data/base.postage.company/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (24, 18, '邮费模板管理', 'layui-icon layui-icon-template-1', 'data/base.postage.template/index', 'data/base.postage.template/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (25, 0, '微信管理', '', '', '#', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (26, 25, '微信管理', '', '', '#', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (27, 26, '微信接口配置', 'layui-icon layui-icon-set', '', 'wechat/config/options', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (28, 26, '微信支付配置', 'layui-icon layui-icon-rmb', '', 'wechat/config/payment', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (29, 25, '微信定制', '', '', '#', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (30, 29, '微信粉丝管理', 'layui-icon layui-icon-username', '', 'wechat/fans/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (31, 29, '微信菜单配置', 'layui-icon layui-icon-cellphone', '', 'wechat/menu/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (32, 29, '微信图文管理', 'layui-icon layui-icon-template-1', '', 'wechat/news/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (33, 29, '回复规则管理', 'layui-icon layui-icon-engine', '', 'wechat/keys/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (34, 29, '关注自动回复', 'layui-icon layui-icon-release', 'wechat/auto/index', 'wechat/auto/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (35, 0, '系统管理', '', '', '#', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (36, 35, '系统配置', '', '', '#', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (37, 36, '系统参数配置', 'layui-icon layui-icon-set', '', 'admin/config/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (38, 36, '系统任务管理', 'layui-icon layui-icon-log', '', 'admin/queue/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (39, 36, '系统日志管理', 'layui-icon layui-icon-form', '', 'admin/oplog/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (40, 36, '数据字典管理', 'layui-icon layui-icon-code-circle', 'admin/base/index', 'admin/base/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (41, 36, '系统文件管理', 'layui-icon layui-icon-carousel', 'admin/file/index', 'admin/file/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (42, 36, '系统菜单管理', 'layui-icon layui-icon-layouts', '', 'admin/menu/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (43, 35, '权限管理', '', '', '#', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (44, 43, '访问权限管理', 'layui-icon layui-icon-vercode', '', 'admin/auth/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); -INSERT INTO {$this->name} VALUES (45, 43, '系统用户管理', 'layui-icon layui-icon-username', '', 'admin/user/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (1, 0, '控制台', '', '', '#', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (2, 1, '数据管理', '', '', '#', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (3, 2, '数据统计报表', 'layui-icon layui-icon-theme', 'data/total.portal/index', 'data/total.portal/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (4, 2, '轮播图片管理', 'layui-icon layui-icon-carousel', 'data/base.slider/index', 'data/base.slider/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (5, 2, '页面内容管理', 'layui-icon layui-icon-read', 'data/base.pager/index', 'data/base.pager/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (6, 2, '文章内容管理', 'layui-icon layui-icon-template', 'data/news.item/index', 'data/news.item/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (7, 2, '支付参数管理', 'layui-icon layui-icon-rmb', 'data/base.payment/index', 'data/base.payment/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (8, 2, '系统通知管理', 'layui-icon layui-icon-notice', 'data/base.message/index', 'data/base.message/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (9, 2, '微信小程序配置', 'layui-icon layui-icon-set', 'data/base.config/wxapp', 'data/base.config/wxapp', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (10, 2, '邀请二维码设置', 'layui-icon layui-icon-cols', 'data/base.config/cropper', 'data/base.config/cropper', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (11, 1, '用户管理', '', '', '#', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (12, 11, '会员用户管理', 'layui-icon layui-icon-user', 'data/user.admin/index', 'data/user.admin/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (13, 11, '余额充值管理', 'layui-icon layui-icon-rmb', 'data/user.balance/index', 'data/user.balance/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (14, 11, '用户返利管理', 'layui-icon layui-icon-transfer', 'data/user.rebate/index', 'data/user.rebate/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (15, 11, '用户提现管理', 'layui-icon layui-icon-component', 'data/user.transfer/index', 'data/user.transfer/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (16, 11, '用户等级管理', 'layui-icon layui-icon-senior', 'data/base.upgrade/index', 'data/base.upgrade/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (17, 11, '用户折扣方案', 'layui-icon layui-icon-set', 'data/base.discount/index', 'data/base.discount/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (18, 1, '商城管理', '', '', '#', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (19, 18, '商品数据管理', 'layui-icon layui-icon-star', 'data/shop.goods/index', 'data/shop.goods/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (20, 18, '商品分类管理', 'layui-icon layui-icon-tabs', 'data/shop.cate/index', 'data/shop.cate/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (21, 18, '订单数据管理', 'layui-icon layui-icon-template', 'data/shop.order/index', 'data/shop.order/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (22, 18, '订单发货管理', 'layui-icon layui-icon-transfer', 'data/shop.send/index', 'data/shop.send/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (23, 18, '快递公司管理', 'layui-icon layui-icon-website', 'data/base.postage.company/index', 'data/base.postage.company/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (24, 18, '邮费模板管理', 'layui-icon layui-icon-template-1', 'data/base.postage.template/index', 'data/base.postage.template/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (25, 0, '微信管理', '', '', '#', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (26, 25, '微信管理', '', '', '#', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (27, 26, '微信接口配置', 'layui-icon layui-icon-set', '', 'wechat/config/options', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (28, 26, '微信支付配置', 'layui-icon layui-icon-rmb', '', 'wechat/config/payment', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (29, 25, '微信定制', '', '', '#', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (30, 29, '微信粉丝管理', 'layui-icon layui-icon-username', '', 'wechat/fans/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (31, 29, '微信菜单配置', 'layui-icon layui-icon-cellphone', '', 'wechat/menu/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (32, 29, '微信图文管理', 'layui-icon layui-icon-template-1', '', 'wechat/news/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (33, 29, '回复规则管理', 'layui-icon layui-icon-engine', '', 'wechat/keys/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (34, 29, '关注自动回复', 'layui-icon layui-icon-release', 'wechat/auto/index', 'wechat/auto/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (35, 0, '系统管理', '', '', '#', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (36, 35, '系统配置', '', '', '#', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (37, 36, '系统参数配置', 'layui-icon layui-icon-set', '', 'admin/config/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (38, 36, '系统任务管理', 'layui-icon layui-icon-log', '', 'admin/queue/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (39, 36, '系统日志管理', 'layui-icon layui-icon-form', '', 'admin/oplog/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (40, 36, '数据字典管理', 'layui-icon layui-icon-code-circle', 'admin/base/index', 'admin/base/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (41, 36, '系统文件管理', 'layui-icon layui-icon-carousel', 'admin/file/index', 'admin/file/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (42, 36, '系统菜单管理', 'layui-icon layui-icon-layouts', '', 'admin/menu/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (43, 35, '权限管理', '', '', '#', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (44, 43, '访问权限管理', 'layui-icon layui-icon-vercode', '', 'admin/auth/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); +INSERT INTO {$table} VALUES (45, 43, '系统用户管理', 'layui-icon layui-icon-username', '', 'admin/user/index', '', '_self', 0, 1, '2022-10-13 12:19:45'); SQL ); } diff --git a/database/migrations/20221013045331_system_oplog.php b/database/migrations/20221013045331_system_oplog.php index 0a28538aa..9769503b9 100644 --- a/database/migrations/20221013045331_system_oplog.php +++ b/database/migrations/20221013045331_system_oplog.php @@ -13,9 +13,7 @@ class SystemOplog extends Migrator $table = 'system_oplog'; // 存在则跳过 - if ($this->hasTable($table)) { - return; - } + if ($this->hasTable($table)) return; // 创建数据表 $this->table($table, [ diff --git a/database/migrations/20221013045619_system_queue.php b/database/migrations/20221013045619_system_queue.php index 2fd0c1733..f0afb382f 100644 --- a/database/migrations/20221013045619_system_queue.php +++ b/database/migrations/20221013045619_system_queue.php @@ -13,9 +13,8 @@ class SystemQueue extends Migrator $table = 'system_queue'; // 存在则跳过 - if ($this->hasTable($table)) { - return; - } + if ($this->hasTable($table)) return; + // 创建数据表 $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-任务', diff --git a/database/migrations/20221013045828_system_user.php b/database/migrations/20221013045828_system_user.php index 41aede439..7976ec380 100644 --- a/database/migrations/20221013045828_system_user.php +++ b/database/migrations/20221013045828_system_user.php @@ -7,21 +7,18 @@ use think\migration\Migrator; */ class SystemUser extends Migrator { - private $name = 'system_user'; - public function change() { + // 当前操作 + $table = 'system_user'; + // 存在则跳过 - if ($this->hasTable($this->name)) { - return; - } + if ($this->hasTable($table)) return; // 创建数据表 - $table = $this->table($this->name, [ + $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-用户', - ]); - $table - ->addColumn('usertype', 'string', ['limit' => 20, 'default' => '', 'comment' => '用户类型']) + ])->addColumn('usertype', 'string', ['limit' => 20, 'default' => '', 'comment' => '用户类型']) ->addColumn('username', 'string', ['limit' => 50, 'default' => '', 'comment' => '用户账号']) ->addColumn('password', 'string', ['limit' => 32, 'default' => '', 'comment' => '用户密码']) ->addColumn('nickname', 'string', ['limit' => 50, 'default' => '', 'comment' => '用户昵称']) @@ -51,6 +48,6 @@ class SystemUser extends Migrator 'password' => '21232f297a57a5a743894a0e4a801fc3', 'headimg' => 'https://thinkadmin.top/static/img/icon.png', ]; - $table->insert($data)->saveData(); + $this->table($table)->insert($data)->saveData(); } }