fix: 重新调整脚本顺序

This commit is contained in:
邹景立 2024-10-17 15:24:54 +08:00
parent 2521c6b90e
commit 10b84445dd
9 changed files with 116 additions and 70 deletions

View File

@ -6,7 +6,7 @@ use think\migration\Migrator;
@set_time_limit(0);
@ini_set('memory_limit', -1);
class InstallAccount20241016 extends Migrator
class InstallAccount20241010 extends Migrator
{
/**

View File

@ -14,10 +14,7 @@
// | 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;
@set_time_limit(0);
@ -26,7 +23,7 @@ use think\migration\Migrator;
/**
* 系统模块数据
*/
class InstallAdmin20241016 extends Migrator
class InstallAdmin20241010 extends Migrator
{
/**
@ -53,9 +50,6 @@ class InstallAdmin20241016 extends Migrator
$this->_create_system_oplog();
$this->_create_system_queue();
$this->_create_system_user();
$this->insertUser();
$this->insertMenu();
$this->insertConf();
}
/**
@ -336,60 +330,4 @@ class InstallAdmin20241016 extends Migrator
'sort', 'status', 'username', 'is_deleted',
], true);
}
/**
* 初始化用户数据
* @return void
*/
private function insertUser()
{
$model = SystemUser::mk()->whereRaw('1=1')->findOrEmpty();
$model->isEmpty() && $model->save([
'id' => '10000',
'username' => 'admin',
'nickname' => '超级管理员',
'password' => '21232f297a57a5a743894a0e4a801fc3',
'headimg' => 'https://thinkadmin.top/static/img/head.png',
]);
}
/**
* 初始化配置参数
* @return void
*/
private function insertConf()
{
$modal = SystemConfig::mk()->whereRaw('1=1')->findOrEmpty();
$modal->isEmpty() && $modal->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'],
['type' => 'base', 'name' => 'site_icon', 'value' => 'https://thinkadmin.top/static/img/logo.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'],
]);
}
/**
* 初始化系统菜单
* @return void
*/
private function insertMenu()
{
// 初始化菜单数据
PhinxExtend::write2menu([
[
'name' => '系统管理',
'sort' => '100',
'subs' => Service::menu(),
],
], [
'url|node' => 'admin/config/index'
]);
}
}

View File

@ -0,0 +1,108 @@
<?php
// +----------------------------------------------------------------------
// | Admin Plugin for ThinkAdmin
// +----------------------------------------------------------------------
// | 版权所有 2014~2024 ThinkAdmin [ thinkadmin.top ]
// +----------------------------------------------------------------------
// | 官方网站: 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;
@set_time_limit(0);
@ini_set('memory_limit', -1);
/**
* 系统模块数据
*/
class InstallAdmin20241011 extends Migrator
{
/**
* 获取脚本名称
* @return string
*/
public function getName(): string
{
return 'AdminPlugin';
}
/**
* 创建数据库
*/
public function change()
{
$this->insertUser();
$this->insertMenu();
$this->insertConf();
}
/**
* 初始化用户数据
* @return void
*/
private function insertUser()
{
$model = SystemUser::mk()->whereRaw('1=1')->findOrEmpty();
$model->isEmpty() && $model->save([
'id' => '10000',
'username' => 'admin',
'nickname' => '超级管理员',
'password' => '21232f297a57a5a743894a0e4a801fc3',
'headimg' => 'https://thinkadmin.top/static/img/head.png',
]);
}
/**
* 初始化配置参数
* @return void
*/
private function insertConf()
{
$modal = SystemConfig::mk()->whereRaw('1=1')->findOrEmpty();
$modal->isEmpty() && $modal->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'],
['type' => 'base', 'name' => 'site_icon', 'value' => 'https://thinkadmin.top/static/img/logo.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'],
]);
}
/**
* 初始化系统菜单
* @return void
* @throws \Exception
*/
private function insertMenu()
{
// 初始化菜单数据
PhinxExtend::write2menu([
[
'name' => '系统管理',
'sort' => '100',
'subs' => Service::menu(),
],
], [
'url|node' => 'admin/config/index'
]);
}
}

View File

@ -15,7 +15,7 @@
use think\admin\extend\PhinxExtend;
use think\migration\Migrator;
class InstallCenter20241016 extends Migrator
class InstallCenter20241010 extends Migrator
{
/**

View File

@ -6,7 +6,7 @@ use think\migration\Migrator;
@set_time_limit(0);
@ini_set('memory_limit', -1);
class InstallPayment20241016 extends Migrator
class InstallPayment20241010 extends Migrator
{
/**

View File

@ -6,7 +6,7 @@ use think\migration\Migrator;
@set_time_limit(0);
@ini_set('memory_limit', -1);
class InstallWechatService20241016 extends Migrator
class InstallWechatService20241010 extends Migrator
{
/**

View File

@ -6,7 +6,7 @@ use think\migration\Migrator;
@set_time_limit(0);
@ini_set('memory_limit', -1);
class InstallWechat20241016 extends Migrator
class InstallWechat20241010 extends Migrator
{
/**

View File

@ -6,7 +6,7 @@ use think\migration\Migrator;
@set_time_limit(0);
@ini_set('memory_limit', -1);
class InstallWemall20241016 extends Migrator
class InstallWemall20241010 extends Migrator
{
/**

View File

@ -6,7 +6,7 @@ use think\migration\Migrator;
@set_time_limit(0);
@ini_set('memory_limit', -1);
class InstallWuma20241016 extends Migrator
class InstallWuma20241010 extends Migrator
{
/**