提交 5d5eb2fb 编写于 作者: D devil_gong

应用上传增加sql操作

上级 7fe4f913
......@@ -12,6 +12,7 @@ namespace app\service;
use think\Db;
use app\service\ResourcesService;
use app\service\SqlconsoleService;
/**
* 应用管理服务层
......@@ -308,6 +309,13 @@ class PluginsAdminService
$ret = self::PluginsHookDeployment();
if($ret['code'] == 0)
{
// sql运行
$uninstall_sql = APP_PATH.'plugins'.DS.$plugins.DS.'uninstall.sql';
if(file_exists($uninstall_sql))
{
SqlconsoleService::Implement(['sql'=>file_get_contents($uninstall_sql)]);
}
// 删除应用文件
self::PluginsResourcesDelete($plugins);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册