Skip to content

Commit c9e9583

Browse files
authored
Update deprecated MYSQL command (#1852)
1 parent dd957ed commit c9e9583

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,8 @@ Now that you are logged in, run the following commands.
187187
```bash
188188
# Creates a user for this computer which uses a password and grant said user all privileges.
189189
# Change mydarkflameuser to a custom username and password to a custom password.
190-
GRANT ALL ON *.* TO 'mydarkflameuser'@'localhost' IDENTIFIED BY 'password' WITH GRANT OPTION;
190+
CREATE USER 'mydarkflameuser'@'localhost' IDENTIFIED BY 'password';
191+
GRANT ALL ON *.* TO 'mydarkflameuser'@'localhost' WITH GRANT OPTION;
191192
FLUSH PRIVILEGES;
192193

193194
# Then create a database for Darkflame Universe to use.

0 commit comments

Comments
 (0)