From 79e62b224855b8c1facae9e454c90687ecc82d2e Mon Sep 17 00:00:00 2001 From: Oliver Date: Fri, 24 Jun 2022 20:12:05 +1000 Subject: [PATCH] Update install.md replace 'djangouser' with 'myuser' --- docs/start/install.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/start/install.md b/docs/start/install.md index 7fae7e0..bd8ee8f 100644 --- a/docs/start/install.md +++ b/docs/start/install.md @@ -183,7 +183,7 @@ Create a new user with complete access to the database: ``` mysql> CREATE USER 'myuser'@'%' IDENTIFIED WITH mysql_native_password BY 'mypass'; -mysql> GRANT ALL ON inventree.* TO 'djangouser'@'%'; +mysql> GRANT ALL ON inventree.* TO 'myuser'@'%'; mysql> FLUSH PRIVILEGES; ```