mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
删除数据库脚本,项目本地不保存
This commit is contained in:
parent
a9c5cf9414
commit
a9d4ec2390
8
.gitignore
vendored
8
.gitignore
vendored
@ -26,3 +26,11 @@
|
|||||||
/public/static/theme/css/_*.css*
|
/public/static/theme/css/_*.css*
|
||||||
/public/static/theme/css/node_modules
|
/public/static/theme/css/node_modules
|
||||||
/public/static/theme/css/package-lock.json
|
/public/static/theme/css/package-lock.json
|
||||||
|
|
||||||
|
/database/migrations/20221013031925_install_admin.php
|
||||||
|
/database/migrations/20221013031926_install_admin_data.php
|
||||||
|
/database/migrations/20221013045829_install_wechat.php
|
||||||
|
/database/migrations/20221013045830_install_wechat_data.php
|
||||||
|
/database/migrations/20221013045838_install_user.php
|
||||||
|
/database/migrations/20221013045839_install_user_data.php
|
||||||
|
/database/migrations/20221013045840_install_user_region.php
|
||||||
|
@ -1,404 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
// +----------------------------------------------------------------------
|
|
||||||
// | Admin Plugin for ThinkAdmin
|
|
||||||
// +----------------------------------------------------------------------
|
|
||||||
// | 版权所有 2014~2023 Anyon <zoujingli@qq.com>
|
|
||||||
// +----------------------------------------------------------------------
|
|
||||||
// | 官方网站: https://thinkadmin.top
|
|
||||||
// +----------------------------------------------------------------------
|
|
||||||
// | 开源协议 ( https://mit-license.org )
|
|
||||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
|
||||||
// +----------------------------------------------------------------------
|
|
||||||
// | gitee 代码仓库:https://gitee.com/zoujingli/think-plugs-admin
|
|
||||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-admin
|
|
||||||
// +----------------------------------------------------------------------
|
|
||||||
|
|
||||||
use think\migration\Migrator;
|
|
||||||
|
|
||||||
set_time_limit(0);
|
|
||||||
@ini_set('memory_limit', -1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 系统模块数据
|
|
||||||
*/
|
|
||||||
class InstallAdmin extends Migrator
|
|
||||||
{
|
|
||||||
public function change()
|
|
||||||
{
|
|
||||||
set_time_limit(0);
|
|
||||||
@ini_set('memory_limit', -1);
|
|
||||||
|
|
||||||
$this->_create_system_auth();
|
|
||||||
$this->_create_system_auth_node();
|
|
||||||
$this->_create_system_base();
|
|
||||||
$this->_create_system_config();
|
|
||||||
$this->_create_system_data();
|
|
||||||
$this->_create_system_file();
|
|
||||||
$this->_create_system_menu();
|
|
||||||
$this->_create_system_oplog();
|
|
||||||
$this->_create_system_queue();
|
|
||||||
$this->_create_system_user();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 创建数据对象
|
|
||||||
* @class SystemAuth
|
|
||||||
* @table system_auth
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
private function _create_system_auth()
|
|
||||||
{
|
|
||||||
|
|
||||||
// 当前数据表
|
|
||||||
$table = 'system_auth';
|
|
||||||
|
|
||||||
// 存在则跳过
|
|
||||||
if ($this->hasTable($table)) return;
|
|
||||||
|
|
||||||
// 创建数据表
|
|
||||||
$this->table($table, [
|
|
||||||
'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-权限',
|
|
||||||
])
|
|
||||||
->addColumn('title', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '权限名称'])
|
|
||||||
->addColumn('utype', 'string', ['limit' => 50, 'default' => '', 'null' => true, 'comment' => '身份权限'])
|
|
||||||
->addColumn('desc', 'string', ['limit' => 500, 'default' => '', 'null' => true, 'comment' => '备注说明'])
|
|
||||||
->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '排序权重'])
|
|
||||||
->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'null' => true, 'comment' => '权限状态(1使用,0禁用)'])
|
|
||||||
->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '创建时间'])
|
|
||||||
->addIndex('status', ['name' => 'idx_system_auth_status'])
|
|
||||||
->addIndex('title', ['name' => 'idx_system_auth_title'])
|
|
||||||
->save();
|
|
||||||
|
|
||||||
// 修改主键长度
|
|
||||||
$this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 创建数据对象
|
|
||||||
* @class SystemAuthNode
|
|
||||||
* @table system_auth_node
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
private function _create_system_auth_node()
|
|
||||||
{
|
|
||||||
|
|
||||||
// 当前数据表
|
|
||||||
$table = 'system_auth_node';
|
|
||||||
|
|
||||||
// 存在则跳过
|
|
||||||
if ($this->hasTable($table)) return;
|
|
||||||
|
|
||||||
// 创建数据表
|
|
||||||
$this->table($table, [
|
|
||||||
'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-授权',
|
|
||||||
])
|
|
||||||
->addColumn('auth', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '角色'])
|
|
||||||
->addColumn('node', 'string', ['limit' => 200, 'default' => '', 'null' => true, 'comment' => '节点'])
|
|
||||||
->addIndex('auth', ['name' => 'idx_system_auth_node_auth'])
|
|
||||||
->addIndex('node', ['name' => 'idx_system_auth_node_node'])
|
|
||||||
->save();
|
|
||||||
|
|
||||||
// 修改主键长度
|
|
||||||
$this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 创建数据对象
|
|
||||||
* @class SystemBase
|
|
||||||
* @table system_base
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
private function _create_system_base()
|
|
||||||
{
|
|
||||||
|
|
||||||
// 当前数据表
|
|
||||||
$table = 'system_base';
|
|
||||||
|
|
||||||
// 存在则跳过
|
|
||||||
if ($this->hasTable($table)) return;
|
|
||||||
|
|
||||||
// 创建数据表
|
|
||||||
$this->table($table, [
|
|
||||||
'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-字典',
|
|
||||||
])
|
|
||||||
->addColumn('type', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '数据类型'])
|
|
||||||
->addColumn('code', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '数据代码'])
|
|
||||||
->addColumn('name', 'string', ['limit' => 500, 'default' => '', 'null' => true, 'comment' => '数据名称'])
|
|
||||||
->addColumn('content', 'text', ['default' => null, 'null' => true, 'comment' => '数据内容'])
|
|
||||||
->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '排序权重'])
|
|
||||||
->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'null' => true, 'comment' => '数据状态(0禁用,1启动)'])
|
|
||||||
->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '删除状态(0正常,1已删)'])
|
|
||||||
->addColumn('deleted_at', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '删除时间'])
|
|
||||||
->addColumn('deleted_by', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '删除用户'])
|
|
||||||
->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '创建时间'])
|
|
||||||
->addIndex('type', ['name' => 'idx_system_base_type'])
|
|
||||||
->addIndex('code', ['name' => 'idx_system_base_code'])
|
|
||||||
->addIndex('name', ['name' => 'idx_system_base_name'])
|
|
||||||
->save();
|
|
||||||
|
|
||||||
// 修改主键长度
|
|
||||||
$this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 创建数据对象
|
|
||||||
* @class SystemConfig
|
|
||||||
* @table system_config
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
private function _create_system_config()
|
|
||||||
{
|
|
||||||
|
|
||||||
// 当前数据表
|
|
||||||
$table = 'system_config';
|
|
||||||
|
|
||||||
// 存在则跳过
|
|
||||||
if ($this->hasTable($table)) return;
|
|
||||||
|
|
||||||
// 创建数据表
|
|
||||||
$this->table($table, [
|
|
||||||
'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-配置',
|
|
||||||
])
|
|
||||||
->addColumn('type', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '配置分类'])
|
|
||||||
->addColumn('name', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '配置名称'])
|
|
||||||
->addColumn('value', 'string', ['limit' => 2048, 'default' => '', 'null' => true, 'comment' => '配置内容'])
|
|
||||||
->addIndex('type', ['name' => 'idx_system_config_type'])
|
|
||||||
->addIndex('name', ['name' => 'idx_system_config_name'])
|
|
||||||
->save();
|
|
||||||
|
|
||||||
// 修改主键长度
|
|
||||||
$this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 创建数据对象
|
|
||||||
* @class SystemData
|
|
||||||
* @table system_data
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
private function _create_system_data()
|
|
||||||
{
|
|
||||||
|
|
||||||
// 当前数据表
|
|
||||||
$table = 'system_data';
|
|
||||||
|
|
||||||
// 存在则跳过
|
|
||||||
if ($this->hasTable($table)) return;
|
|
||||||
|
|
||||||
// 创建数据表
|
|
||||||
$this->table($table, [
|
|
||||||
'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-数据',
|
|
||||||
])
|
|
||||||
->addColumn('name', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '配置名'])
|
|
||||||
->addColumn('value', 'text', ['default' => null, 'null' => true, 'comment' => '配置值'])
|
|
||||||
->addIndex('name', ['name' => 'idx_system_data_name'])
|
|
||||||
->save();
|
|
||||||
|
|
||||||
// 修改主键长度
|
|
||||||
$this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 创建数据对象
|
|
||||||
* @class SystemFile
|
|
||||||
* @table system_file
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
private function _create_system_file()
|
|
||||||
{
|
|
||||||
|
|
||||||
// 当前数据表
|
|
||||||
$table = 'system_file';
|
|
||||||
|
|
||||||
// 存在则跳过
|
|
||||||
if ($this->hasTable($table)) return;
|
|
||||||
|
|
||||||
// 创建数据表
|
|
||||||
$this->table($table, [
|
|
||||||
'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-文件',
|
|
||||||
])
|
|
||||||
->addColumn('type', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '上传类型'])
|
|
||||||
->addColumn('hash', 'string', ['limit' => 32, 'default' => '', 'null' => true, 'comment' => '文件哈希'])
|
|
||||||
->addColumn('name', 'string', ['limit' => 200, 'default' => '', 'null' => true, 'comment' => '文件名称'])
|
|
||||||
->addColumn('xext', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '文件后缀'])
|
|
||||||
->addColumn('xurl', 'string', ['limit' => 500, 'default' => '', 'null' => true, 'comment' => '访问链接'])
|
|
||||||
->addColumn('xkey', 'string', ['limit' => 500, 'default' => '', 'null' => true, 'comment' => '文件路径'])
|
|
||||||
->addColumn('mime', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '文件类型'])
|
|
||||||
->addColumn('size', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '文件大小'])
|
|
||||||
->addColumn('uuid', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '用户编号'])
|
|
||||||
->addColumn('isfast', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '是否秒传'])
|
|
||||||
->addColumn('issafe', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '安全模式'])
|
|
||||||
->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'null' => true, 'comment' => '上传状态(1悬空,2落地)'])
|
|
||||||
->addColumn('create_at', 'datetime', ['default' => null, 'null' => true, 'comment' => '创建时间'])
|
|
||||||
->addColumn('update_at', 'datetime', ['default' => null, 'null' => true, '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();
|
|
||||||
|
|
||||||
// 修改主键长度
|
|
||||||
$this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 创建数据对象
|
|
||||||
* @class SystemMenu
|
|
||||||
* @table system_menu
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
private function _create_system_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' => 0, 'null' => true, 'comment' => '上级ID'])
|
|
||||||
->addColumn('title', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '菜单名称'])
|
|
||||||
->addColumn('icon', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '菜单图标'])
|
|
||||||
->addColumn('node', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '节点代码'])
|
|
||||||
->addColumn('url', 'string', ['limit' => 400, 'default' => '', 'null' => true, 'comment' => '链接节点'])
|
|
||||||
->addColumn('params', 'string', ['limit' => 500, 'default' => '', 'null' => true, 'comment' => '链接参数'])
|
|
||||||
->addColumn('target', 'string', ['limit' => 20, 'default' => '_self', 'null' => true, 'comment' => '打开方式'])
|
|
||||||
->addColumn('sort', 'integer', ['limit' => 11, 'default' => 0, 'null' => true, 'comment' => '排序权重'])
|
|
||||||
->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'null' => true, 'comment' => '状态(0:禁用,1:启用)'])
|
|
||||||
->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '创建时间'])
|
|
||||||
->addIndex('status', ['name' => 'idx_system_menu_status'])
|
|
||||||
->save();
|
|
||||||
|
|
||||||
// 修改主键长度
|
|
||||||
$this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 创建数据对象
|
|
||||||
* @class SystemOplog
|
|
||||||
* @table system_oplog
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
private function _create_system_oplog()
|
|
||||||
{
|
|
||||||
|
|
||||||
// 当前数据表
|
|
||||||
$table = 'system_oplog';
|
|
||||||
|
|
||||||
// 存在则跳过
|
|
||||||
if ($this->hasTable($table)) return;
|
|
||||||
|
|
||||||
// 创建数据表
|
|
||||||
$this->table($table, [
|
|
||||||
'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-日志',
|
|
||||||
])
|
|
||||||
->addColumn('node', 'string', ['limit' => 200, 'default' => '', 'null' => false, 'comment' => '当前操作节点'])
|
|
||||||
->addColumn('geoip', 'string', ['limit' => 15, 'default' => '', 'null' => false, 'comment' => '操作者IP地址'])
|
|
||||||
->addColumn('action', 'string', ['limit' => 200, 'default' => '', 'null' => false, 'comment' => '操作行为名称'])
|
|
||||||
->addColumn('content', 'string', ['limit' => 1024, 'default' => '', 'null' => false, 'comment' => '操作内容描述'])
|
|
||||||
->addColumn('username', 'string', ['limit' => 50, 'default' => '', 'null' => false, 'comment' => '操作人用户名'])
|
|
||||||
->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => false, 'comment' => '创建时间'])
|
|
||||||
->save();
|
|
||||||
|
|
||||||
// 修改主键长度
|
|
||||||
$this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 创建数据对象
|
|
||||||
* @class SystemQueue
|
|
||||||
* @table system_queue
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
private function _create_system_queue()
|
|
||||||
{
|
|
||||||
|
|
||||||
// 当前数据表
|
|
||||||
$table = 'system_queue';
|
|
||||||
|
|
||||||
// 存在则跳过
|
|
||||||
if ($this->hasTable($table)) return;
|
|
||||||
|
|
||||||
// 创建数据表
|
|
||||||
$this->table($table, [
|
|
||||||
'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-任务',
|
|
||||||
])
|
|
||||||
->addColumn('code', 'string', ['limit' => 20, 'default' => '', 'null' => false, 'comment' => '任务编号'])
|
|
||||||
->addColumn('title', 'string', ['limit' => 100, 'default' => '', 'null' => false, 'comment' => '任务名称'])
|
|
||||||
->addColumn('command', 'string', ['limit' => 500, 'default' => '', 'null' => true, 'comment' => '执行指令'])
|
|
||||||
->addColumn('exec_pid', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '执行进程'])
|
|
||||||
->addColumn('exec_data', 'text', ['default' => null, 'null' => true, 'comment' => '执行参数'])
|
|
||||||
->addColumn('exec_time', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '执行时间'])
|
|
||||||
->addColumn('exec_desc', 'string', ['limit' => 500, 'default' => '', 'null' => true, 'comment' => '执行描述'])
|
|
||||||
->addColumn('enter_time', 'decimal', ['precision' => 20, 'scale' => 4, 'default' => '0.0000', 'null' => true, 'comment' => '开始时间'])
|
|
||||||
->addColumn('outer_time', 'decimal', ['precision' => 20, 'scale' => 4, 'default' => '0.0000', 'null' => true, 'comment' => '结束时间'])
|
|
||||||
->addColumn('loops_time', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '循环时间'])
|
|
||||||
->addColumn('attempts', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '执行次数'])
|
|
||||||
->addColumn('rscript', 'integer', ['limit' => 1, 'default' => 1, 'null' => true, 'comment' => '任务类型(0单例,1多例)'])
|
|
||||||
->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'null' => true, 'comment' => '任务状态(1新任务,2处理中,3成功,4失败)'])
|
|
||||||
->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => false, 'comment' => '创建时间'])
|
|
||||||
->addIndex('code', ['name' => 'idx_system_queue_code'])
|
|
||||||
->addIndex('title', ['name' => 'idx_system_queue_title'])
|
|
||||||
->addIndex('status', ['name' => 'idx_system_queue_status'])
|
|
||||||
->addIndex('rscript', ['name' => 'idx_system_queue_rscript'])
|
|
||||||
->addIndex('create_at', ['name' => 'idx_system_queue_create_at'])
|
|
||||||
->addIndex('exec_time', ['name' => 'idx_system_queue_exec_time'])
|
|
||||||
->save();
|
|
||||||
|
|
||||||
// 修改主键长度
|
|
||||||
$this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 创建数据对象
|
|
||||||
* @class SystemUser
|
|
||||||
* @table system_user
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
private function _create_system_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' => '', 'null' => true, 'comment' => '用户类型'])
|
|
||||||
->addColumn('username', 'string', ['limit' => 50, 'default' => '', 'null' => true, 'comment' => '用户账号'])
|
|
||||||
->addColumn('password', 'string', ['limit' => 32, 'default' => '', 'null' => true, 'comment' => '用户密码'])
|
|
||||||
->addColumn('nickname', 'string', ['limit' => 50, 'default' => '', 'null' => true, 'comment' => '用户昵称'])
|
|
||||||
->addColumn('headimg', 'string', ['limit' => 255, 'default' => '', 'null' => true, 'comment' => '头像地址'])
|
|
||||||
->addColumn('authorize', 'string', ['limit' => 255, 'default' => '', 'null' => true, 'comment' => '权限授权'])
|
|
||||||
->addColumn('contact_qq', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '联系QQ'])
|
|
||||||
->addColumn('contact_mail', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '联系邮箱'])
|
|
||||||
->addColumn('contact_phone', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '联系手机'])
|
|
||||||
->addColumn('login_ip', 'string', ['limit' => 255, 'default' => '', 'null' => true, 'comment' => '登录地址'])
|
|
||||||
->addColumn('login_at', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '登录时间'])
|
|
||||||
->addColumn('login_num', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '登录次数'])
|
|
||||||
->addColumn('describe', 'string', ['limit' => 255, 'default' => '', 'null' => true, 'comment' => '备注说明'])
|
|
||||||
->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'null' => true, 'comment' => '状态(0禁用,1启用)'])
|
|
||||||
->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '排序权重'])
|
|
||||||
->addColumn('is_deleted', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '删除(1删除,0未删)'])
|
|
||||||
->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '创建时间'])
|
|
||||||
->addIndex('status', ['name' => 'idx_system_user_status'])
|
|
||||||
->addIndex('username', ['name' => 'idx_system_user_username'])
|
|
||||||
->addIndex('is_deleted', ['name' => 'idx_system_user_is_deleted'])
|
|
||||||
->save();
|
|
||||||
|
|
||||||
// 修改主键长度
|
|
||||||
$this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,109 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
// +----------------------------------------------------------------------
|
|
||||||
// | Admin Plugin for ThinkAdmin
|
|
||||||
// +----------------------------------------------------------------------
|
|
||||||
// | 版权所有 2014~2023 Anyon <zoujingli@qq.com>
|
|
||||||
// +----------------------------------------------------------------------
|
|
||||||
// | 官方网站: https://thinkadmin.top
|
|
||||||
// +----------------------------------------------------------------------
|
|
||||||
// | 开源协议 ( https://mit-license.org )
|
|
||||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
|
||||||
// +----------------------------------------------------------------------
|
|
||||||
// | gitee 代码仓库:https://gitee.com/zoujingli/think-plugs-admin
|
|
||||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-admin
|
|
||||||
// +----------------------------------------------------------------------
|
|
||||||
|
|
||||||
use app\admin\Service;
|
|
||||||
use think\admin\extend\PhinxExtend;
|
|
||||||
use think\admin\model\SystemConfig;
|
|
||||||
use think\admin\model\SystemUser;
|
|
||||||
use think\migration\Migrator;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 系统模块初始化
|
|
||||||
*/
|
|
||||||
class InstallAdminData extends Migrator
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* 数据库初始化
|
|
||||||
* @return void
|
|
||||||
* @throws \think\db\exception\DbException
|
|
||||||
*/
|
|
||||||
public function change()
|
|
||||||
{
|
|
||||||
set_time_limit(0);
|
|
||||||
@ini_set('memory_limit', -1);
|
|
||||||
|
|
||||||
$this->insertUser();
|
|
||||||
$this->insertMenu();
|
|
||||||
$this->insertConf();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 初始化用户数据
|
|
||||||
* @return void
|
|
||||||
* @throws \think\db\exception\DbException
|
|
||||||
*/
|
|
||||||
private function insertUser()
|
|
||||||
{
|
|
||||||
// 检查是否存在
|
|
||||||
$map = ['username' => 'admin'];
|
|
||||||
if (SystemUser::mk()->where($map)->count() > 0) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// 初始化默认数据
|
|
||||||
SystemUser::mk()->save([
|
|
||||||
'id' => '10000',
|
|
||||||
'username' => 'admin',
|
|
||||||
'nickname' => '超级管理员',
|
|
||||||
'password' => '21232f297a57a5a743894a0e4a801fc3',
|
|
||||||
'headimg' => 'https://thinkadmin.top/static/img/icon.png',
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 初始化系统菜单
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
private function insertMenu()
|
|
||||||
{
|
|
||||||
// 初始化菜单数据
|
|
||||||
PhinxExtend::write2menu([
|
|
||||||
[
|
|
||||||
'name' => '系统管理',
|
|
||||||
'sort' => '100',
|
|
||||||
'subs' => Service::menu(),
|
|
||||||
],
|
|
||||||
], [
|
|
||||||
'url|node' => 'admin/config/index'
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 初始化配置参数
|
|
||||||
* @return void
|
|
||||||
* @throws \think\db\exception\DbException
|
|
||||||
*/
|
|
||||||
private function insertConf()
|
|
||||||
{
|
|
||||||
// 检查数据
|
|
||||||
if (SystemConfig::mk()->count()) return;
|
|
||||||
|
|
||||||
// 写入数据
|
|
||||||
SystemConfig::mk()->insertAll([
|
|
||||||
['type' => 'base', 'name' => 'app_name', 'value' => 'ThinkAdmin'],
|
|
||||||
['type' => 'base', 'name' => 'app_version', 'value' => 'v6'],
|
|
||||||
['type' => 'base', 'name' => 'editor', 'value' => 'ckeditor5'],
|
|
||||||
['type' => 'base', 'name' => 'login_name', 'value' => '系统管理'],
|
|
||||||
['type' => 'base', 'name' => 'site_copy', 'value' => '©版权所有 2014-' . date('Y') . ' ThinkAdmin.Top'],
|
|
||||||
['type' => 'base', 'name' => 'site_icon', 'value' => 'https://v6.thinkadmin.top/upload/4b/5a423974e447d5502023f553ed370f.png'],
|
|
||||||
['type' => 'base', 'name' => 'site_name', 'value' => 'ThinkAdmin'],
|
|
||||||
['type' => 'base', 'name' => 'site_theme', 'value' => 'default'],
|
|
||||||
['type' => 'storage', 'name' => 'allow_exts', 'value' => 'doc,gif,ico,jpg,mp3,mp4,p12,pem,png,zip,rar,xls,xlsx'],
|
|
||||||
['type' => 'storage', 'name' => 'type', 'value' => 'local'],
|
|
||||||
['type' => 'wechat', 'name' => 'type', 'value' => 'api'],
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,313 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
// +----------------------------------------------------------------------
|
|
||||||
// | Wechat Plugin for ThinkAdmin
|
|
||||||
// +----------------------------------------------------------------------
|
|
||||||
// | 版权所有 2014~2023 Anyon <zoujingli@qq.com>
|
|
||||||
// +----------------------------------------------------------------------
|
|
||||||
// | 官方网站: https://thinkadmin.top
|
|
||||||
// +----------------------------------------------------------------------
|
|
||||||
// | 开源协议 ( https://mit-license.org )
|
|
||||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
|
||||||
// +----------------------------------------------------------------------
|
|
||||||
// | gitee 代码仓库:https://gitee.com/zoujingli/think-plugs-wechat
|
|
||||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
|
||||||
// +----------------------------------------------------------------------
|
|
||||||
|
|
||||||
use think\migration\Migrator;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 微信模块数据表
|
|
||||||
*/
|
|
||||||
class InstallWechat extends Migrator
|
|
||||||
{
|
|
||||||
public function change()
|
|
||||||
{
|
|
||||||
set_time_limit(0);
|
|
||||||
@ini_set('memory_limit', -1);
|
|
||||||
|
|
||||||
$this->_create_wechat_auto();
|
|
||||||
$this->_create_wechat_fans();
|
|
||||||
$this->_create_wechat_fans_tags();
|
|
||||||
$this->_create_wechat_keys();
|
|
||||||
$this->_create_wechat_media();
|
|
||||||
$this->_create_wechat_news();
|
|
||||||
$this->_create_wechat_news_article();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 创建数据对象
|
|
||||||
* @class WechatAuto
|
|
||||||
* @table wechat_auto
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
private function _create_wechat_auto()
|
|
||||||
{
|
|
||||||
|
|
||||||
// 当前数据表
|
|
||||||
$table = 'wechat_auto';
|
|
||||||
|
|
||||||
// 存在则跳过
|
|
||||||
if ($this->hasTable($table)) return;
|
|
||||||
|
|
||||||
// 创建数据表
|
|
||||||
$this->table($table, [
|
|
||||||
'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-回复',
|
|
||||||
])
|
|
||||||
->addColumn('type', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '类型(text,image,news)'])
|
|
||||||
->addColumn('time', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '延迟时间'])
|
|
||||||
->addColumn('code', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '消息编号'])
|
|
||||||
->addColumn('appid', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '公众号APPID'])
|
|
||||||
->addColumn('content', 'text', ['default' => null, 'null' => true, 'comment' => '文本内容'])
|
|
||||||
->addColumn('image_url', 'string', ['limit' => 255, 'default' => '', 'null' => true, 'comment' => '图片链接'])
|
|
||||||
->addColumn('voice_url', 'string', ['limit' => 255, 'default' => '', 'null' => true, 'comment' => '语音链接'])
|
|
||||||
->addColumn('music_title', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '音乐标题'])
|
|
||||||
->addColumn('music_url', 'string', ['limit' => 255, 'default' => '', 'null' => true, 'comment' => '音乐链接'])
|
|
||||||
->addColumn('music_image', 'string', ['limit' => 255, 'default' => '', 'null' => true, 'comment' => '缩略图片'])
|
|
||||||
->addColumn('music_desc', 'string', ['limit' => 255, 'default' => '', 'null' => true, 'comment' => '音乐描述'])
|
|
||||||
->addColumn('video_title', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '视频标题'])
|
|
||||||
->addColumn('video_url', 'string', ['limit' => 255, 'default' => '', 'null' => true, 'comment' => '视频URL'])
|
|
||||||
->addColumn('video_desc', 'string', ['limit' => 255, 'default' => '', 'null' => true, 'comment' => '视频描述'])
|
|
||||||
->addColumn('news_id', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '图文ID'])
|
|
||||||
->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'null' => true, 'comment' => '状态(0禁用,1启用)'])
|
|
||||||
->addColumn('create_by', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '创建人'])
|
|
||||||
->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '创建时间'])
|
|
||||||
->addIndex('type', ['name' => 'idx_wechat_auto_type'])
|
|
||||||
->addIndex('time', ['name' => 'idx_wechat_auto_time'])
|
|
||||||
->addIndex('code', ['name' => 'idx_wechat_auto_code'])
|
|
||||||
->addIndex('appid', ['name' => 'idx_wechat_auto_appid'])
|
|
||||||
->save();
|
|
||||||
|
|
||||||
// 修改主键长度
|
|
||||||
$this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 创建数据对象
|
|
||||||
* @class WechatFans
|
|
||||||
* @table wechat_fans
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
private function _create_wechat_fans()
|
|
||||||
{
|
|
||||||
|
|
||||||
// 当前数据表
|
|
||||||
$table = 'wechat_fans';
|
|
||||||
|
|
||||||
// 存在则跳过
|
|
||||||
if ($this->hasTable($table)) return;
|
|
||||||
|
|
||||||
// 创建数据表
|
|
||||||
$this->table($table, [
|
|
||||||
'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-粉丝',
|
|
||||||
])
|
|
||||||
->addColumn('appid', 'string', ['limit' => 50, 'default' => '', 'null' => true, 'comment' => '公众号APPID'])
|
|
||||||
->addColumn('unionid', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '粉丝unionid'])
|
|
||||||
->addColumn('openid', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '粉丝openid'])
|
|
||||||
->addColumn('tagid_list', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '粉丝标签id'])
|
|
||||||
->addColumn('is_black', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '是否为黑名单状态'])
|
|
||||||
->addColumn('subscribe', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '关注状态(0未关注,1已关注)'])
|
|
||||||
->addColumn('nickname', 'string', ['limit' => 200, 'default' => '', 'null' => true, 'comment' => '用户昵称'])
|
|
||||||
->addColumn('sex', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '用户性别(1男性,2女性,0未知)'])
|
|
||||||
->addColumn('country', 'string', ['limit' => 50, 'default' => '', 'null' => true, 'comment' => '用户所在国家'])
|
|
||||||
->addColumn('province', 'string', ['limit' => 50, 'default' => '', 'null' => true, 'comment' => '用户所在省份'])
|
|
||||||
->addColumn('city', 'string', ['limit' => 50, 'default' => '', 'null' => true, 'comment' => '用户所在城市'])
|
|
||||||
->addColumn('language', 'string', ['limit' => 50, 'default' => '', 'null' => true, 'comment' => '用户的语言(zh_CN)'])
|
|
||||||
->addColumn('headimgurl', 'string', ['limit' => 500, 'default' => '', 'null' => true, 'comment' => '用户头像'])
|
|
||||||
->addColumn('subscribe_time', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '关注时间'])
|
|
||||||
->addColumn('subscribe_at', 'datetime', ['default' => null, 'null' => true, 'comment' => '关注时间'])
|
|
||||||
->addColumn('remark', 'string', ['limit' => 50, 'default' => '', 'null' => true, 'comment' => '备注'])
|
|
||||||
->addColumn('subscribe_scene', 'string', ['limit' => 200, 'default' => '', 'null' => true, 'comment' => '扫码关注场景'])
|
|
||||||
->addColumn('qr_scene', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '二维码场景值'])
|
|
||||||
->addColumn('qr_scene_str', 'string', ['limit' => 200, 'default' => '', 'null' => true, 'comment' => '二维码场景内容'])
|
|
||||||
->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '创建时间'])
|
|
||||||
->addIndex('openid', ['name' => 'idx_wechat_fans_openid'])
|
|
||||||
->addIndex('unionid', ['name' => 'idx_wechat_fans_unionid'])
|
|
||||||
->addIndex('is_black', ['name' => 'idx_wechat_fans_is_black'])
|
|
||||||
->addIndex('subscribe', ['name' => 'idx_wechat_fans_subscribe'])
|
|
||||||
->save();
|
|
||||||
|
|
||||||
// 修改主键长度
|
|
||||||
$this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 创建数据对象
|
|
||||||
* @class WechatFansTags
|
|
||||||
* @table wechat_fans_tags
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
private function _create_wechat_fans_tags()
|
|
||||||
{
|
|
||||||
|
|
||||||
// 当前数据表
|
|
||||||
$table = 'wechat_fans_tags';
|
|
||||||
|
|
||||||
// 存在则跳过
|
|
||||||
if ($this->hasTable($table)) return;
|
|
||||||
|
|
||||||
// 创建数据表
|
|
||||||
$this->table($table, [
|
|
||||||
'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-标签',
|
|
||||||
])
|
|
||||||
->addColumn('appid', 'string', ['limit' => 50, 'default' => '', 'null' => true, 'comment' => '公众号APPID'])
|
|
||||||
->addColumn('name', 'string', ['limit' => 35, 'default' => '', 'null' => true, 'comment' => '标签名称'])
|
|
||||||
->addColumn('count', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '总数'])
|
|
||||||
->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '创建日期'])
|
|
||||||
->addIndex('id', ['name' => 'idx_wechat_fans_tags_id'])
|
|
||||||
->addIndex('appid', ['name' => 'idx_wechat_fans_tags_appid'])
|
|
||||||
->save();
|
|
||||||
|
|
||||||
// 修改主键长度
|
|
||||||
$this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 创建数据对象
|
|
||||||
* @class WechatKeys
|
|
||||||
* @table wechat_keys
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
private function _create_wechat_keys()
|
|
||||||
{
|
|
||||||
|
|
||||||
// 当前数据表
|
|
||||||
$table = 'wechat_keys';
|
|
||||||
|
|
||||||
// 存在则跳过
|
|
||||||
if ($this->hasTable($table)) return;
|
|
||||||
|
|
||||||
// 创建数据表
|
|
||||||
$this->table($table, [
|
|
||||||
'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-规则',
|
|
||||||
])
|
|
||||||
->addColumn('appid', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '公众号APPID'])
|
|
||||||
->addColumn('type', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '类型(text,image,news)'])
|
|
||||||
->addColumn('keys', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '关键字'])
|
|
||||||
->addColumn('content', 'text', ['default' => null, 'null' => true, 'comment' => '文本内容'])
|
|
||||||
->addColumn('image_url', 'string', ['limit' => 255, 'default' => '', 'null' => true, 'comment' => '图片链接'])
|
|
||||||
->addColumn('voice_url', 'string', ['limit' => 255, 'default' => '', 'null' => true, 'comment' => '语音链接'])
|
|
||||||
->addColumn('music_title', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '音乐标题'])
|
|
||||||
->addColumn('music_url', 'string', ['limit' => 255, 'default' => '', 'null' => true, 'comment' => '音乐链接'])
|
|
||||||
->addColumn('music_image', 'string', ['limit' => 255, 'default' => '', 'null' => true, 'comment' => '缩略图片'])
|
|
||||||
->addColumn('music_desc', 'string', ['limit' => 255, 'default' => '', 'null' => true, 'comment' => '音乐描述'])
|
|
||||||
->addColumn('video_title', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '视频标题'])
|
|
||||||
->addColumn('video_url', 'string', ['limit' => 255, 'default' => '', 'null' => true, 'comment' => '视频URL'])
|
|
||||||
->addColumn('video_desc', 'string', ['limit' => 255, 'default' => '', 'null' => true, 'comment' => '视频描述'])
|
|
||||||
->addColumn('news_id', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '图文ID'])
|
|
||||||
->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '排序字段'])
|
|
||||||
->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'null' => true, 'comment' => '状态(0禁用,1启用)'])
|
|
||||||
->addColumn('create_by', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '创建人'])
|
|
||||||
->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '创建时间'])
|
|
||||||
->addIndex('appid', ['name' => 'idx_wechat_keys_appid'])
|
|
||||||
->addIndex('type', ['name' => 'idx_wechat_keys_type'])
|
|
||||||
->addIndex('keys', ['name' => 'idx_wechat_keys_keys'])
|
|
||||||
->save();
|
|
||||||
|
|
||||||
// 修改主键长度
|
|
||||||
$this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 创建数据对象
|
|
||||||
* @class WechatMedia
|
|
||||||
* @table wechat_media
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
private function _create_wechat_media()
|
|
||||||
{
|
|
||||||
|
|
||||||
// 当前数据表
|
|
||||||
$table = 'wechat_media';
|
|
||||||
|
|
||||||
// 存在则跳过
|
|
||||||
if ($this->hasTable($table)) return;
|
|
||||||
|
|
||||||
// 创建数据表
|
|
||||||
$this->table($table, [
|
|
||||||
'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-素材',
|
|
||||||
])
|
|
||||||
->addColumn('md5', 'string', ['limit' => 32, 'default' => '', 'null' => true, 'comment' => '文件md5'])
|
|
||||||
->addColumn('type', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '媒体类型'])
|
|
||||||
->addColumn('appid', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '公众号ID'])
|
|
||||||
->addColumn('media_id', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '永久素材MediaID'])
|
|
||||||
->addColumn('local_url', 'string', ['limit' => 300, 'default' => '', 'null' => true, 'comment' => '本地文件链接'])
|
|
||||||
->addColumn('media_url', 'string', ['limit' => 300, 'default' => '', 'null' => true, 'comment' => '远程图片链接'])
|
|
||||||
->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '创建时间'])
|
|
||||||
->addIndex('appid', ['name' => 'idx_wechat_media_appid'])
|
|
||||||
->addIndex('md5', ['name' => 'idx_wechat_media_md5'])
|
|
||||||
->addIndex('type', ['name' => 'idx_wechat_media_type'])
|
|
||||||
->addIndex('media_id', ['name' => 'idx_wechat_media_media_id'])
|
|
||||||
->save();
|
|
||||||
|
|
||||||
// 修改主键长度
|
|
||||||
$this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 创建数据对象
|
|
||||||
* @class WechatNews
|
|
||||||
* @table wechat_news
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
private function _create_wechat_news()
|
|
||||||
{
|
|
||||||
|
|
||||||
// 当前数据表
|
|
||||||
$table = 'wechat_news';
|
|
||||||
|
|
||||||
// 存在则跳过
|
|
||||||
if ($this->hasTable($table)) return;
|
|
||||||
|
|
||||||
// 创建数据表
|
|
||||||
$this->table($table, [
|
|
||||||
'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-图文',
|
|
||||||
])
|
|
||||||
->addColumn('media_id', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '永久素材MediaID'])
|
|
||||||
->addColumn('local_url', 'string', ['limit' => 300, 'default' => '', 'null' => true, 'comment' => '永久素材外网URL'])
|
|
||||||
->addColumn('article_id', 'string', ['limit' => 60, 'default' => '', 'null' => true, 'comment' => '关联图文ID(用英文逗号做分割)'])
|
|
||||||
->addColumn('is_deleted', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '删除状态(0未删除,1已删除)'])
|
|
||||||
->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '创建时间'])
|
|
||||||
->addColumn('create_by', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '创建人'])
|
|
||||||
->addIndex('article_id', ['name' => 'idx_wechat_news_article_id'])
|
|
||||||
->addIndex('media_id', ['name' => 'idx_wechat_news_media_id'])
|
|
||||||
->save();
|
|
||||||
|
|
||||||
// 修改主键长度
|
|
||||||
$this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 创建数据对象
|
|
||||||
* @class WechatNewsArticle
|
|
||||||
* @table wechat_news_article
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
private function _create_wechat_news_article()
|
|
||||||
{
|
|
||||||
|
|
||||||
// 当前数据表
|
|
||||||
$table = 'wechat_news_article';
|
|
||||||
|
|
||||||
// 存在则跳过
|
|
||||||
if ($this->hasTable($table)) return;
|
|
||||||
|
|
||||||
// 创建数据表
|
|
||||||
$this->table($table, [
|
|
||||||
'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-文章',
|
|
||||||
])
|
|
||||||
->addColumn('title', 'string', ['limit' => 50, 'default' => '', 'null' => true, 'comment' => '素材标题'])
|
|
||||||
->addColumn('local_url', 'string', ['limit' => 300, 'default' => '', 'null' => true, 'comment' => '永久素材显示URL'])
|
|
||||||
->addColumn('show_cover_pic', 'integer', ['limit' => 4, 'default' => 0, 'null' => true, 'comment' => '显示封面(0不显示,1显示)'])
|
|
||||||
->addColumn('author', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '文章作者'])
|
|
||||||
->addColumn('digest', 'string', ['limit' => 300, 'default' => '', 'null' => true, 'comment' => '摘要内容'])
|
|
||||||
->addColumn('content', 'text', ['default' => null, 'null' => true, 'comment' => '图文内容'])
|
|
||||||
->addColumn('content_source_url', 'string', ['limit' => 200, 'default' => '', 'null' => true, 'comment' => '原文地址'])
|
|
||||||
->addColumn('read_num', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '阅读数量'])
|
|
||||||
->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '创建时间'])
|
|
||||||
->save();
|
|
||||||
|
|
||||||
// 修改主键长度
|
|
||||||
$this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,54 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
// +----------------------------------------------------------------------
|
|
||||||
// | Wechat Plugin for ThinkAdmin
|
|
||||||
// +----------------------------------------------------------------------
|
|
||||||
// | 版权所有 2014~2023 Anyon <zoujingli@qq.com>
|
|
||||||
// +----------------------------------------------------------------------
|
|
||||||
// | 官方网站: https://thinkadmin.top
|
|
||||||
// +----------------------------------------------------------------------
|
|
||||||
// | 开源协议 ( https://mit-license.org )
|
|
||||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
|
||||||
// +----------------------------------------------------------------------
|
|
||||||
// | gitee 代码仓库:https://gitee.com/zoujingli/think-plugs-wechat
|
|
||||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
|
||||||
// +----------------------------------------------------------------------
|
|
||||||
|
|
||||||
use app\wechat\Service;
|
|
||||||
use think\admin\extend\PhinxExtend;
|
|
||||||
use think\migration\Migrator;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 微信初始化
|
|
||||||
*/
|
|
||||||
class InstallWechatData extends Migrator
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* 初始化数据
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function change()
|
|
||||||
{
|
|
||||||
set_time_limit(0);
|
|
||||||
@ini_set('memory_limit', -1);
|
|
||||||
|
|
||||||
$this->insertMenu();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 初始化菜单
|
|
||||||
*/
|
|
||||||
private function insertMenu()
|
|
||||||
{
|
|
||||||
// 写入微信菜单
|
|
||||||
PhinxExtend::write2menu([
|
|
||||||
[
|
|
||||||
'name' => '微信管理',
|
|
||||||
'sort' => '200',
|
|
||||||
'subs' => Service::menu(),
|
|
||||||
],
|
|
||||||
], [
|
|
||||||
'url|node' => 'wechat/config/options'
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user