将 test 独立出模块,方便代码管理

This commit is contained in:
thinkgem
2024-07-06 22:22:06 +08:00
parent 9b4b4affa0
commit 090b2cd3fc
123 changed files with 193 additions and 15299 deletions

View File

@@ -0,0 +1,13 @@
-- 打开 my.ini 给 [mysqld] 增加如下配置:
-- sql_mode=ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION
set global read_only=0;
create user 'jeesite'@'%' identified by 'jeesite';
create database jeesite DEFAULT CHARSET 'utf8mb4' COLLATE 'utf8mb4_unicode_ci';
grant all privileges on jeesite.* to 'jeesite'@'%' identified by 'jeesite';
flush privileges;