提交额外资源
This commit is contained in:
6
build/extraResources/mysql/reset-init.sql
Normal file
6
build/extraResources/mysql/reset-init.sql
Normal file
@@ -0,0 +1,6 @@
|
||||
ALTER USER IF EXISTS 'root'@'localhost' IDENTIFIED BY 'njcnpqs';
|
||||
CREATE USER IF NOT EXISTS 'root'@'127.0.0.1' IDENTIFIED BY 'njcnpqs';
|
||||
GRANT ALL PRIVILEGES ON *.* TO 'root'@'127.0.0.1' WITH GRANT OPTION;
|
||||
CREATE USER IF NOT EXISTS 'root'@'%' IDENTIFIED BY 'njcnpqs';
|
||||
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' WITH GRANT OPTION;
|
||||
FLUSH PRIVILEGES;
|
||||
Reference in New Issue
Block a user