sql script update

This commit is contained in:
thinkgem
2018-01-06 20:29:02 +08:00
parent 484c34466a
commit a59c978603
9 changed files with 2826 additions and 104 deletions

View File

@@ -0,0 +1,10 @@
set session sql_mode='ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION';
create user 'jeesite'@'%' identified by 'jeesite';
create database jeesite DEFAULT CHARSET utf8 COLLATE utf8_general_ci;
grant all privileges on jeesite.* to 'jeesite'@'%' identified by 'jeesite';
flush privileges;