From c9e95839eeaaefc3726e18aec47d664452a2cb03 Mon Sep 17 00:00:00 2001 From: HailStorm32 Date: Tue, 29 Jul 2025 07:59:32 -0700 Subject: [PATCH] Update deprecated MYSQL command (#1852) --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 34233d56..9816db91 100644 --- a/README.md +++ b/README.md @@ -187,7 +187,8 @@ Now that you are logged in, run the following commands. ```bash # Creates a user for this computer which uses a password and grant said user all privileges. # Change mydarkflameuser to a custom username and password to a custom password. -GRANT ALL ON *.* TO 'mydarkflameuser'@'localhost' IDENTIFIED BY 'password' WITH GRANT OPTION; +CREATE USER 'mydarkflameuser'@'localhost' IDENTIFIED BY 'password'; +GRANT ALL ON *.* TO 'mydarkflameuser'@'localhost' WITH GRANT OPTION; FLUSH PRIVILEGES; # Then create a database for Darkflame Universe to use.