数据库脚本修复,添加私服

This commit is contained in:
2019-11-27 11:30:27 +08:00
parent 4226fdcdfb
commit 27b6034046
7 changed files with 12590 additions and 0 deletions

View File

@@ -1,6 +1,10 @@
DROP DATABASE IF EXISTS db_imis2;
CREATE DATABASE db_imis2;
use db_imis2;
GRANT ALL ON db_imis2.* TO imis2@'%' IDENTIFIED BY '2015imis2';
FLUSH PRIVILEGES;
CREATE TABLE tb_user
(
coluserid INT(10) PRIMARY KEY NOT NULL AUTO_INCREMENT,