From 6f0f54845e3d94fd323406a41677d15a1cf05ebf 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:23:46 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=88=E5=B9=B6=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 --- .../20221013031925_install_admin.php | 350 ++++++++++++++++++ .../migrations/20221013031925_system_auth.php | 30 -- .../20221013032309_system_auth_node.php | 24 -- .../migrations/20221013032525_system_base.php | 35 -- .../20221013033419_system_config.php | 54 --- .../migrations/20221013033914_system_data.php | 23 -- .../migrations/20221013034059_system_file.php | 40 -- .../migrations/20221013034618_system_menu.php | 87 ----- .../20221013045331_system_oplog.php | 30 -- .../20221013045619_system_queue.php | 41 -- .../migrations/20221013045828_system_user.php | 53 --- .../20221013045829_install_wechat.php | 210 +++++++++++ .../migrations/20221013045829_wechat_auto.php | 48 --- .../migrations/20221013045830_wechat_fans.php | 51 --- .../20221013045831_wechat_fans_tags.php | 32 -- .../migrations/20221013045832_wechat_keys.php | 50 --- .../20221013045833_wechat_media.php | 37 -- .../migrations/20221013045834_wechat_news.php | 35 -- .../20221013045835_wechat_news_article.php | 34 -- 19 files changed, 560 insertions(+), 704 deletions(-) create mode 100644 database/migrations/20221013031925_install_admin.php delete mode 100644 database/migrations/20221013031925_system_auth.php delete mode 100644 database/migrations/20221013032309_system_auth_node.php delete mode 100644 database/migrations/20221013032525_system_base.php delete mode 100644 database/migrations/20221013033419_system_config.php delete mode 100644 database/migrations/20221013033914_system_data.php delete mode 100644 database/migrations/20221013034059_system_file.php delete mode 100644 database/migrations/20221013034618_system_menu.php delete mode 100644 database/migrations/20221013045331_system_oplog.php delete mode 100644 database/migrations/20221013045619_system_queue.php delete mode 100644 database/migrations/20221013045828_system_user.php create mode 100644 database/migrations/20221013045829_install_wechat.php delete mode 100644 database/migrations/20221013045829_wechat_auto.php delete mode 100644 database/migrations/20221013045830_wechat_fans.php delete mode 100644 database/migrations/20221013045831_wechat_fans_tags.php delete mode 100644 database/migrations/20221013045832_wechat_keys.php delete mode 100644 database/migrations/20221013045833_wechat_media.php delete mode 100644 database/migrations/20221013045834_wechat_news.php delete mode 100644 database/migrations/20221013045835_wechat_news_article.php diff --git a/database/migrations/20221013031925_install_admin.php b/database/migrations/20221013031925_install_admin.php new file mode 100644 index 000000000..23efbd498 --- /dev/null +++ b/database/migrations/20221013031925_install_admin.php @@ -0,0 +1,350 @@ +_auth(); + $this->_base(); + $this->_conf(); + $this->_data(); + $this->_file(); + $this->_menu(); + $this->_node(); + $this->_oplog(); + $this->_queue(); + $this->_user(); + } + + private function _auth() + { + // 当前操作 + $table = 'system_auth'; + + // 创建数据表,存在则跳过 + $this->hasTable($table) || $this->table($table, [ + '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', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) + ->addColumn('status', 'integer', ['limit' => 1, '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(); + } + + private function _node() + { + // 当前操作 + $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' => '角色编号']) + ->addColumn('node', 'string', ['limit' => 200, 'default' => '', 'comment' => '节点路径']) + ->addIndex('auth', ['name' => 'idx_system_auth_node_auth']) + ->addIndex('node', ['name' => 'idx_system_auth_node_node']) + ->save(); + } + + private function _base() + { + // 当前操作 + $table = 'system_base'; + + // 创建数据表,存在则跳过 + $this->hasTable($table) || $this->table($table, [ + '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', ['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已删)']) + ->addColumn('deleted_at', 'string', ['limit' => 20, 'default' => '', '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']) + ->addIndex('sort', ['name' => 'idx_system_base_sort']) + ->addIndex('status', ['name' => 'idx_system_base_status']) + ->addIndex('deleted', ['name' => 'idx_system_base_deleted']) + ->save(); + } + + private function _conf() + { + // 当前操作 + $table = 'system_config'; + + // 存在则跳过 + if ($this->hasTable($table)) return; + + // 创建数据表 + $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(<<hasTable($table) || $this->table($table, [ + 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-数据', + ]) + ->addColumn('name', 'string', ['limit' => 100, 'default' => '', 'comment' => '配置名']) + ->addColumn('value', 'text', ['default' => '', 'comment' => '配置值']) + ->addIndex('type', ['name' => 'idx_system_data_name']) + ->save(); + } + + private function _file() + { + // 当前操作 + $table = 'system_file'; + + // 创建数据表,存在则跳过 + $this->hasTable($table) || $this->table($table, [ + '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' => 1, 'default' => 0, 'comment' => '是否秒传']) + ->addColumn('status', 'integer', ['limit' => 1, '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(); + } + + private function _menu() + { + // 当前操作 + $table = 'system_menu'; + + // 存在则跳过 + if ($this->hasTable($table)) return; + + // 创建数据表 + $this->table($table, [ + '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', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) + ->addColumn('status', 'integer', ['limit' => 1, '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(); + + // 初始化菜单数据 + $this->execute(<<hasTable($table) || $this->table($table, [ + '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(); + } + + private function _queue() + { + // 当前操作 + $table = 'system_queue'; + + // 创建数据表,存在则跳过 + $this->hasTable($table) || $this->table($table, [ + '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', ['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' => 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']) + ->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(); + } + + private function _user() + { + // 当前操作 + $table = 'system_user'; + + // 存在则跳过 + if ($this->hasTable($table)) return; + + // 创建数据表 + $this->table($table, [ + 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', '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' => '用户昵称']) + ->addColumn('headimg', 'string', ['limit' => 500, 'default' => '', 'comment' => '头像地址']) + ->addColumn('authorize', 'string', ['limit' => 500, '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' => '', 'comment' => '联系手机']) + ->addColumn('login_ip', 'string', ['limit' => 20, 'default' => '', 'comment' => '登录地址']) + ->addColumn('login_at', 'string', ['limit' => 20, 'default' => '', 'comment' => '登录时间']) + ->addColumn('login_num', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '登录次数']) + ->addColumn('describe', 'string', ['limit' => 500, 'default' => '', 'comment' => '备注说明']) + ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '状态(0禁用,1启用)']) + ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) + ->addColumn('is_deleted', 'integer', ['limit' => 1, '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', + ]; + $this->table($table)->insert($data)->saveData(); + } +} diff --git a/database/migrations/20221013031925_system_auth.php b/database/migrations/20221013031925_system_auth.php deleted file mode 100644 index 6a1a27900..000000000 --- a/database/migrations/20221013031925_system_auth.php +++ /dev/null @@ -1,30 +0,0 @@ -hasTable($table) || $this->table($table, [ - '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', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) - ->addColumn('status', 'integer', ['limit' => 1, '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 deleted file mode 100644 index 55506c4fd..000000000 --- a/database/migrations/20221013032309_system_auth_node.php +++ /dev/null @@ -1,24 +0,0 @@ -hasTable($table) || $this->table($table, [ - 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-授权', - ]) - ->addColumn('auth', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '角色编号']) - ->addColumn('node', 'string', ['limit' => 200, 'default' => '', 'comment' => '节点路径']) - ->addIndex('auth', ['name' => 'idx_system_auth_node_auth']) - ->addIndex('node', ['name' => 'idx_system_auth_node_node']) - ->save(); - } -} diff --git a/database/migrations/20221013032525_system_base.php b/database/migrations/20221013032525_system_base.php deleted file mode 100644 index 2594e8670..000000000 --- a/database/migrations/20221013032525_system_base.php +++ /dev/null @@ -1,35 +0,0 @@ -hasTable($table) || $this->table($table, [ - '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', ['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已删)']) - ->addColumn('deleted_at', 'string', ['limit' => 20, 'default' => '', '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']) - ->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 deleted file mode 100644 index 99acf124d..000000000 --- a/database/migrations/20221013033419_system_config.php +++ /dev/null @@ -1,54 +0,0 @@ -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(<<hasTable($table) || $this->table($table, [ - 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-数据', - ]) - ->addColumn('name', 'string', ['limit' => 100, 'default' => '', 'comment' => '配置名']) - ->addColumn('value', 'text', ['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 deleted file mode 100644 index 2d440d309..000000000 --- a/database/migrations/20221013034059_system_file.php +++ /dev/null @@ -1,40 +0,0 @@ -hasTable($table) || $this->table($table, [ - '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' => 1, 'default' => 0, 'comment' => '是否秒传']) - ->addColumn('status', 'integer', ['limit' => 1, '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 deleted file mode 100644 index 745ed469d..000000000 --- a/database/migrations/20221013034618_system_menu.php +++ /dev/null @@ -1,87 +0,0 @@ -hasTable($table)) return; - - // 创建数据表 - $this->table($table, [ - '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', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) - ->addColumn('status', 'integer', ['limit' => 1, '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(); - - // 初始化菜单数据 - $this->execute(<<hasTable($table)) return; - - // 创建数据表 - $this->table($table, [ - '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 deleted file mode 100644 index f0afb382f..000000000 --- a/database/migrations/20221013045619_system_queue.php +++ /dev/null @@ -1,41 +0,0 @@ -hasTable($table)) return; - - // 创建数据表 - $this->table($table, [ - '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', ['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' => 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']) - ->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/20221013045828_system_user.php b/database/migrations/20221013045828_system_user.php deleted file mode 100644 index 7976ec380..000000000 --- a/database/migrations/20221013045828_system_user.php +++ /dev/null @@ -1,53 +0,0 @@ -hasTable($table)) return; - - // 创建数据表 - $this->table($table, [ - 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', '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' => '用户昵称']) - ->addColumn('headimg', 'string', ['limit' => 500, 'default' => '', 'comment' => '头像地址']) - ->addColumn('authorize', 'string', ['limit' => 500, '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' => '', 'comment' => '联系手机']) - ->addColumn('login_ip', 'string', ['limit' => 20, 'default' => '', 'comment' => '登录地址']) - ->addColumn('login_at', 'string', ['limit' => 20, 'default' => '', 'comment' => '登录时间']) - ->addColumn('login_num', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '登录次数']) - ->addColumn('describe', 'string', ['limit' => 500, 'default' => '', 'comment' => '备注说明']) - ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '状态(0禁用,1启用)']) - ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) - ->addColumn('is_deleted', 'integer', ['limit' => 1, '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', - ]; - $this->table($table)->insert($data)->saveData(); - } -} diff --git a/database/migrations/20221013045829_install_wechat.php b/database/migrations/20221013045829_install_wechat.php new file mode 100644 index 000000000..66f661018 --- /dev/null +++ b/database/migrations/20221013045829_install_wechat.php @@ -0,0 +1,210 @@ +_auto(); + $this->_article(); + $this->_fans(); + $this->_media(); + $this->_news(); + $this->_tags(); + $this->_keys(); + } + + private function _auto() + { + // 当前操作 + $table = 'wechat_auto'; + + // 创建数据表,存在则跳过 + $this->hasTable($table) || $this->table($table, [ + 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-回复', + ]) + ->addColumn('type', 'string', ['limit' => 20, 'default' => '', 'comment' => '类型(text,image,news)']) + ->addColumn('time', 'string', ['limit' => 50, 'default' => '', 'comment' => '延迟时间']) + ->addColumn('code', 'string', ['limit' => 20, 'default' => '', 'comment' => '消息编号']) + ->addColumn('appid', 'string', ['limit' => 50, 'default' => '', 'comment' => '公众号编号']) + ->addColumn('content', 'text', ['default' => '', 'comment' => '文本内容']) + ->addColumn('image_url', 'string', ['limit' => 500, 'default' => '', 'comment' => '图片链接']) + ->addColumn('voice_url', 'string', ['limit' => 500, 'default' => '', 'comment' => '语音链接']) + ->addColumn('music_title', 'string', ['limit' => 500, 'default' => '', 'comment' => '音乐标题']) + ->addColumn('music_url', 'string', ['limit' => 500, 'default' => '', 'comment' => '音乐链接']) + ->addColumn('music_image', 'string', ['limit' => 500, 'default' => '', 'comment' => '缩略图片']) + ->addColumn('music_desc', 'string', ['limit' => 500, 'default' => '', 'comment' => '音乐描述']) + ->addColumn('video_title', 'string', ['limit' => 500, 'default' => '', 'comment' => '视频标题']) + ->addColumn('video_url', 'string', ['limit' => 500, 'default' => '', 'comment' => '视频链接']) + ->addColumn('video_desc', 'string', ['limit' => 500, 'default' => '', 'comment' => '视频描述']) + ->addColumn('news_id', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '图文编号']) + ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '状态(0禁用,1启用)']) + ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) + ->addIndex('code', ['name' => 'idx_wechat_auto_code']) + ->addIndex('type', ['name' => 'idx_wechat_auto_type']) + ->addIndex('time', ['name' => 'idx_wechat_auto_time']) + ->addIndex('appid', ['name' => 'idx_wechat_auto_appid']) + ->addIndex('status', ['name' => 'idx_wechat_auto_status']) + ->save(); + } + + private function _fans() + { + // 当前操作 + $table = 'wechat_fans'; + + // 创建数据表,存在则跳过 + $this->hasTable($table) || $this->table($table, [ + 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-粉丝', + ]) + ->addColumn('appid', 'string', ['limit' => 50, 'default' => '', 'comment' => '公众号编号']) + ->addColumn('unionid', 'string', ['limit' => 100, 'default' => '', 'comment' => 'UNIONID']) + ->addColumn('openid', 'string', ['limit' => 100, 'default' => '', 'comment' => 'OPENID']) + ->addColumn('tagid_list', 'string', ['limit' => 100, 'default' => '', 'comment' => '粉丝标签']) + ->addColumn('is_black', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '黑名单状态']) + ->addColumn('subscribe', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '黑名单状态']) + ->addColumn('nickname', 'string', ['limit' => 200, 'default' => '', 'comment' => '用户昵称']) + ->addColumn('sex', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '用户性别(1男性,2女性,0未知)']) + ->addColumn('country', 'string', ['limit' => 50, 'default' => '', 'comment' => '用户所在国家']) + ->addColumn('province', 'string', ['limit' => 50, 'default' => '', 'comment' => '用户所在省份']) + ->addColumn('city', 'string', ['limit' => 50, 'default' => '', 'comment' => '用户所在城市']) + ->addColumn('language', 'string', ['limit' => 50, 'default' => '', 'comment' => '用户的语言']) + ->addColumn('headimgurl', 'string', ['limit' => 500, 'default' => '', 'comment' => '用户头像']) + ->addColumn('subscribe_time', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '关注时间']) + ->addColumn('subscribe_at', 'datetime', ['limit' => 20, 'default' => null, 'comment' => '关注时间']) + ->addColumn('subscribe_scene', 'string', ['limit' => 200, 'default' => '', 'comment' => '扫码场景']) + ->addColumn('qr_scene', 'string', ['limit' => 200, 'default' => '', 'comment' => '场景数值']) + ->addColumn('qr_scene_str', 'string', ['limit' => 200, 'default' => '', 'comment' => '场景内容']) + ->addColumn('remark', 'string', ['limit' => 500, 'default' => '', 'comment' => '用户备注']) + ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) + ->addIndex('appid', ['name' => 'idx_wechat_fans_appid']) + ->addIndex('openid', ['name' => 'idx_wechat_fans_openid']) + ->addIndex('unionid', ['name' => 'idx_wechat_fans_unionid']) + ->addIndex('is_black', ['name' => 'idx_wechat_fans_black']) + ->addIndex('subscribe', ['name' => 'idx_wechat_fans_subscribe']) + ->save(); + } + + private function _tags() + { + // 当前操作 + $table = 'wechat_fans_tags'; + + // 创建数据表,存在则跳过 + $this->hasTable($table) || $this->table($table, [ + 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-标签', + ]) + ->addColumn('appid', 'string', ['limit' => 50, 'default' => '', 'comment' => '公众号编号']) + ->addColumn('name', 'string', ['limit' => 50, 'default' => '', 'comment' => '标签名称']) + ->addColumn('openid', 'string', ['limit' => 100, 'default' => '', 'comment' => 'OPENID']) + ->addColumn('count', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '粉丝数量']) + ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) + ->addIndex('appid', ['name' => 'idx_wechat_fans_appid']) + ->save(); + } + + private function _keys() + { + // 当前操作 + $table = 'wechat_keys'; + + // 创建数据表,存在则跳过 + $this->hasTable($table) || $this->table($table, [ + 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-规则', + ]) + ->addColumn('type', 'string', ['limit' => 20, 'default' => '', 'comment' => '类型(text,image,news)']) + ->addColumn('keys', 'string', ['limit' => 100, 'default' => '', 'comment' => '关键字']) + ->addColumn('appid', 'string', ['limit' => 50, 'default' => '', 'comment' => '公众号编号']) + ->addColumn('content', 'text', ['default' => '', 'comment' => '文本内容']) + ->addColumn('image_url', 'string', ['limit' => 500, 'default' => '', 'comment' => '图片链接']) + ->addColumn('voice_url', 'string', ['limit' => 500, 'default' => '', 'comment' => '语音链接']) + ->addColumn('music_title', 'string', ['limit' => 500, 'default' => '', 'comment' => '音乐标题']) + ->addColumn('music_url', 'string', ['limit' => 500, 'default' => '', 'comment' => '音乐链接']) + ->addColumn('music_image', 'string', ['limit' => 500, 'default' => '', 'comment' => '缩略图片']) + ->addColumn('music_desc', 'string', ['limit' => 500, 'default' => '', 'comment' => '音乐描述']) + ->addColumn('video_title', 'string', ['limit' => 500, 'default' => '', 'comment' => '视频标题']) + ->addColumn('video_url', 'string', ['limit' => 500, 'default' => '', 'comment' => '视频链接']) + ->addColumn('video_desc', 'string', ['limit' => 500, 'default' => '', 'comment' => '视频描述']) + ->addColumn('news_id', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '图文编号']) + ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) + ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '状态(0禁用,1启用)']) + ->addColumn('create_by', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '创建用户']) + ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) + ->addIndex('sort', ['name' => 'idx_wechat_keys_sort']) + ->addIndex('keys', ['name' => 'idx_wechat_keys_keys']) + ->addIndex('type', ['name' => 'idx_wechat_keys_type']) + ->addIndex('time', ['name' => 'idx_wechat_keys_time']) + ->addIndex('appid', ['name' => 'idx_wechat_keys_appid']) + ->addIndex('status', ['name' => 'idx_wechat_keys_status']) + ->save(); + } + + private function _media() + { + // 当前操作 + $table = 'wechat_media'; + + // 创建数据表,存在则跳过 + $this->hasTable($table) || $this->table($table, [ + 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-素材', + ]) + ->addColumn('md5', 'string', ['limit' => 32, 'default' => '', 'comment' => '文件哈希']) + ->addColumn('type', 'string', ['limit' => 20, 'default' => '', 'comment' => '媒体类型']) + ->addColumn('appid', 'string', ['limit' => 50, 'default' => '', 'comment' => '公众号编号']) + ->addColumn('media_id', 'string', ['limit' => 100, 'default' => '', 'comment' => '永久素材MediaID']) + ->addColumn('local_url', 'string', ['limit' => 500, 'default' => '', 'comment' => '本地文件链接']) + ->addColumn('media_url', 'string', ['limit' => 500, 'default' => '', 'comment' => '远程图片链接']) + ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) + ->addIndex('md5', ['name' => 'idx_wechat_media_md5']) + ->addIndex('type', ['name' => 'idx_wechat_media_type']) + ->addIndex('appid', ['name' => 'idx_wechat_media_appid']) + ->addIndex('media_id', ['name' => 'idx_wechat_media_id']) + ->save(); + } + + private function _news() + { + // 当前操作 + $table = 'wechat_news'; + + // 创建数据表,存在则跳过 + $this->hasTable($table) || $this->table($table, [ + 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-图文', + ]) + ->addColumn('media_id', 'string', ['limit' => 100, 'default' => '', 'comment' => '永久素材编号']) + ->addColumn('local_url', 'string', ['limit' => 500, 'default' => '', 'comment' => '本地文件链接']) + ->addColumn('article_id', 'string', ['limit' => 100, 'default' => '', 'comment' => '关联文章编号(用英文逗号做分割)']) + ->addColumn('is_deleted', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '删除(1删除,0未删)']) + ->addColumn('create_by', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '创建用户']) + ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) + ->addIndex('media_id', ['name' => 'idx_wechat_news_media_id']) + ->addIndex('article_id', ['name' => 'idx_wechat_news_article_id']) + ->addIndex('is_deleted', ['name' => 'idx_wechat_news_deleted']) + ->save(); + } + + private function _article() + { + // 当前操作 + $table = 'wechat_news_article'; + + // 创建数据表,存在则跳过 + $this->hasTable($table) || $this->table($table, [ + 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-文章', + ]) + ->addColumn('title', 'string', ['limit' => 100, 'default' => '', 'comment' => '素材标题']) + ->addColumn('local_url', 'string', ['limit' => 500, 'default' => '', 'comment' => '素材链接']) + ->addColumn('show_cover_pic', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '显示封面(0隐藏,1显示)']) + ->addColumn('author', 'string', ['limit' => 20, 'default' => '', 'comment' => '文章作者']) + ->addColumn('digest', 'string', ['limit' => 300, 'default' => '', 'comment' => '摘要内容']) + ->addColumn('content', 'text', ['default' => '', 'comment' => '图文内容']) + ->addColumn('content_source_url', 'string', ['limit' => 200, 'default' => '', 'comment' => '原文地址']) + ->addColumn('read_num', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '阅读数量']) + ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) + ->save(); + } +} diff --git a/database/migrations/20221013045829_wechat_auto.php b/database/migrations/20221013045829_wechat_auto.php deleted file mode 100644 index 1e5648fcb..000000000 --- a/database/migrations/20221013045829_wechat_auto.php +++ /dev/null @@ -1,48 +0,0 @@ -hasTable($table)) { - return; - } - - // 创建数据表 - $this->table($table, [ - 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-回复', - ]) - ->addColumn('type', 'string', ['limit' => 20, 'default' => '', 'comment' => '类型(text,image,news)']) - ->addColumn('time', 'string', ['limit' => 50, 'default' => '', 'comment' => '延迟时间']) - ->addColumn('code', 'string', ['limit' => 20, 'default' => '', 'comment' => '消息编号']) - ->addColumn('appid', 'string', ['limit' => 50, 'default' => '', 'comment' => '公众号编号']) - ->addColumn('content', 'text', ['default' => '', 'comment' => '文本内容']) - ->addColumn('image_url', 'string', ['limit' => 500, 'default' => '', 'comment' => '图片链接']) - ->addColumn('voice_url', 'string', ['limit' => 500, 'default' => '', 'comment' => '语音链接']) - ->addColumn('music_title', 'string', ['limit' => 500, 'default' => '', 'comment' => '音乐标题']) - ->addColumn('music_url', 'string', ['limit' => 500, 'default' => '', 'comment' => '音乐链接']) - ->addColumn('music_image', 'string', ['limit' => 500, 'default' => '', 'comment' => '缩略图片']) - ->addColumn('music_desc', 'string', ['limit' => 500, 'default' => '', 'comment' => '音乐描述']) - ->addColumn('video_title', 'string', ['limit' => 500, 'default' => '', 'comment' => '视频标题']) - ->addColumn('video_url', 'string', ['limit' => 500, 'default' => '', 'comment' => '视频链接']) - ->addColumn('video_desc', 'string', ['limit' => 500, 'default' => '', 'comment' => '视频描述']) - ->addColumn('news_id', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '图文编号']) - ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '状态(0禁用,1启用)']) - ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) - ->addIndex('code', ['name' => 'idx_wechat_auto_code']) - ->addIndex('type', ['name' => 'idx_wechat_auto_type']) - ->addIndex('time', ['name' => 'idx_wechat_auto_time']) - ->addIndex('appid', ['name' => 'idx_wechat_auto_appid']) - ->addIndex('status', ['name' => 'idx_wechat_auto_status']) - ->save(); - } -} diff --git a/database/migrations/20221013045830_wechat_fans.php b/database/migrations/20221013045830_wechat_fans.php deleted file mode 100644 index b91d7083b..000000000 --- a/database/migrations/20221013045830_wechat_fans.php +++ /dev/null @@ -1,51 +0,0 @@ -hasTable($table)) { - return; - } - - // 创建数据表 - $this->table($table, [ - 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-粉丝', - ]) - ->addColumn('appid', 'string', ['limit' => 50, 'default' => '', 'comment' => '公众号编号']) - ->addColumn('unionid', 'string', ['limit' => 100, 'default' => '', 'comment' => 'UNIONID']) - ->addColumn('openid', 'string', ['limit' => 100, 'default' => '', 'comment' => 'OPENID']) - ->addColumn('tagid_list', 'string', ['limit' => 100, 'default' => '', 'comment' => '粉丝标签']) - ->addColumn('is_black', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '黑名单状态']) - ->addColumn('subscribe', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '黑名单状态']) - ->addColumn('nickname', 'string', ['limit' => 200, 'default' => '', 'comment' => '用户昵称']) - ->addColumn('sex', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '用户性别(1男性,2女性,0未知)']) - ->addColumn('country', 'string', ['limit' => 50, 'default' => '', 'comment' => '用户所在国家']) - ->addColumn('province', 'string', ['limit' => 50, 'default' => '', 'comment' => '用户所在省份']) - ->addColumn('city', 'string', ['limit' => 50, 'default' => '', 'comment' => '用户所在城市']) - ->addColumn('language', 'string', ['limit' => 50, 'default' => '', 'comment' => '用户的语言']) - ->addColumn('headimgurl', 'string', ['limit' => 500, 'default' => '', 'comment' => '用户头像']) - ->addColumn('subscribe_time', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '关注时间']) - ->addColumn('subscribe_at', 'datetime', ['limit' => 20, 'default' => null, 'comment' => '关注时间']) - ->addColumn('subscribe_scene', 'string', ['limit' => 200, 'default' => '', 'comment' => '扫码场景']) - ->addColumn('qr_scene', 'string', ['limit' => 200, 'default' => '', 'comment' => '场景数值']) - ->addColumn('qr_scene_str', 'string', ['limit' => 200, 'default' => '', 'comment' => '场景内容']) - ->addColumn('remark', 'string', ['limit' => 500, 'default' => '', 'comment' => '用户备注']) - ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) - ->addIndex('appid', ['name' => 'idx_wechat_fans_appid']) - ->addIndex('openid', ['name' => 'idx_wechat_fans_openid']) - ->addIndex('unionid', ['name' => 'idx_wechat_fans_unionid']) - ->addIndex('is_black', ['name' => 'idx_wechat_fans_black']) - ->addIndex('subscribe', ['name' => 'idx_wechat_fans_subscribe']) - ->save(); - } -} diff --git a/database/migrations/20221013045831_wechat_fans_tags.php b/database/migrations/20221013045831_wechat_fans_tags.php deleted file mode 100644 index d7f3adb04..000000000 --- a/database/migrations/20221013045831_wechat_fans_tags.php +++ /dev/null @@ -1,32 +0,0 @@ -hasTable($table)) { - return; - } - - // 创建数据表 - $this->table($table, [ - 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-标签', - ]) - ->addColumn('appid', 'string', ['limit' => 50, 'default' => '', 'comment' => '公众号编号']) - ->addColumn('name', 'string', ['limit' => 50, 'default' => '', 'comment' => '标签名称']) - ->addColumn('openid', 'string', ['limit' => 100, 'default' => '', 'comment' => 'OPENID']) - ->addColumn('count', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '粉丝数量']) - ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) - ->addIndex('appid', ['name' => 'idx_wechat_fans_appid']) - ->save(); - } -} diff --git a/database/migrations/20221013045832_wechat_keys.php b/database/migrations/20221013045832_wechat_keys.php deleted file mode 100644 index fa659d597..000000000 --- a/database/migrations/20221013045832_wechat_keys.php +++ /dev/null @@ -1,50 +0,0 @@ -hasTable($table)) { - return; - } - - // 创建数据表 - $this->table($table, [ - 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-规则', - ]) - ->addColumn('type', 'string', ['limit' => 20, 'default' => '', 'comment' => '类型(text,image,news)']) - ->addColumn('keys', 'string', ['limit' => 100, 'default' => '', 'comment' => '关键字']) - ->addColumn('appid', 'string', ['limit' => 50, 'default' => '', 'comment' => '公众号编号']) - ->addColumn('content', 'text', ['default' => '', 'comment' => '文本内容']) - ->addColumn('image_url', 'string', ['limit' => 500, 'default' => '', 'comment' => '图片链接']) - ->addColumn('voice_url', 'string', ['limit' => 500, 'default' => '', 'comment' => '语音链接']) - ->addColumn('music_title', 'string', ['limit' => 500, 'default' => '', 'comment' => '音乐标题']) - ->addColumn('music_url', 'string', ['limit' => 500, 'default' => '', 'comment' => '音乐链接']) - ->addColumn('music_image', 'string', ['limit' => 500, 'default' => '', 'comment' => '缩略图片']) - ->addColumn('music_desc', 'string', ['limit' => 500, 'default' => '', 'comment' => '音乐描述']) - ->addColumn('video_title', 'string', ['limit' => 500, 'default' => '', 'comment' => '视频标题']) - ->addColumn('video_url', 'string', ['limit' => 500, 'default' => '', 'comment' => '视频链接']) - ->addColumn('video_desc', 'string', ['limit' => 500, 'default' => '', 'comment' => '视频描述']) - ->addColumn('news_id', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '图文编号']) - ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) - ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '状态(0禁用,1启用)']) - ->addColumn('create_by', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '创建用户']) - ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) - ->addIndex('sort', ['name' => 'idx_wechat_keys_sort']) - ->addIndex('keys', ['name' => 'idx_wechat_keys_keys']) - ->addIndex('type', ['name' => 'idx_wechat_keys_type']) - ->addIndex('time', ['name' => 'idx_wechat_keys_time']) - ->addIndex('appid', ['name' => 'idx_wechat_keys_appid']) - ->addIndex('status', ['name' => 'idx_wechat_keys_status']) - ->save(); - } -} diff --git a/database/migrations/20221013045833_wechat_media.php b/database/migrations/20221013045833_wechat_media.php deleted file mode 100644 index 6962f55b9..000000000 --- a/database/migrations/20221013045833_wechat_media.php +++ /dev/null @@ -1,37 +0,0 @@ -hasTable($table)) { - return; - } - - // 创建数据表 - $this->table($table, [ - 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-素材', - ]) - ->addColumn('md5', 'string', ['limit' => 32, 'default' => '', 'comment' => '文件哈希']) - ->addColumn('type', 'string', ['limit' => 20, 'default' => '', 'comment' => '媒体类型']) - ->addColumn('appid', 'string', ['limit' => 50, 'default' => '', 'comment' => '公众号编号']) - ->addColumn('media_id', 'string', ['limit' => 100, 'default' => '', 'comment' => '永久素材MediaID']) - ->addColumn('local_url', 'string', ['limit' => 500, 'default' => '', 'comment' => '本地文件链接']) - ->addColumn('media_url', 'string', ['limit' => 500, 'default' => '', 'comment' => '远程图片链接']) - ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) - ->addIndex('md5', ['name' => 'idx_wechat_media_md5']) - ->addIndex('type', ['name' => 'idx_wechat_media_type']) - ->addIndex('appid', ['name' => 'idx_wechat_media_appid']) - ->addIndex('media_id', ['name' => 'idx_wechat_media_id']) - ->save(); - } -} diff --git a/database/migrations/20221013045834_wechat_news.php b/database/migrations/20221013045834_wechat_news.php deleted file mode 100644 index dda014176..000000000 --- a/database/migrations/20221013045834_wechat_news.php +++ /dev/null @@ -1,35 +0,0 @@ -hasTable($table)) { - return; - } - - // 创建数据表 - $this->table($table, [ - 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-图文', - ]) - ->addColumn('media_id', 'string', ['limit' => 100, 'default' => '', 'comment' => '永久素材编号']) - ->addColumn('local_url', 'string', ['limit' => 500, 'default' => '', 'comment' => '本地文件链接']) - ->addColumn('article_id', 'string', ['limit' => 100, 'default' => '', 'comment' => '关联文章编号(用英文逗号做分割)']) - ->addColumn('is_deleted', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '删除(1删除,0未删)']) - ->addColumn('create_by', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '创建用户']) - ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) - ->addIndex('media_id', ['name' => 'idx_wechat_news_media_id']) - ->addIndex('article_id', ['name' => 'idx_wechat_news_article_id']) - ->addIndex('is_deleted', ['name' => 'idx_wechat_news_deleted']) - ->save(); - } -} diff --git a/database/migrations/20221013045835_wechat_news_article.php b/database/migrations/20221013045835_wechat_news_article.php deleted file mode 100644 index e3b051486..000000000 --- a/database/migrations/20221013045835_wechat_news_article.php +++ /dev/null @@ -1,34 +0,0 @@ -hasTable($table)) { - return; - } - // 创建数据表 - $this->table($table, [ - 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-文章', - ]) - ->addColumn('title', 'string', ['limit' => 100, 'default' => '', 'comment' => '素材标题']) - ->addColumn('local_url', 'string', ['limit' => 500, 'default' => '', 'comment' => '素材链接']) - ->addColumn('show_cover_pic', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '显示封面(0隐藏,1显示)']) - ->addColumn('author', 'string', ['limit' => 20, 'default' => '', 'comment' => '文章作者']) - ->addColumn('digest', 'string', ['limit' => 300, 'default' => '', 'comment' => '摘要内容']) - ->addColumn('content', 'text', ['default' => '', 'comment' => '图文内容']) - ->addColumn('content_source_url', 'string', ['limit' => 200, 'default' => '', 'comment' => '原文地址']) - ->addColumn('read_num', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '阅读数量']) - ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) - ->save(); - } -}