2
0
mirror of https://github.com/inventree/inventree-docs.git synced 2025-04-27 21:26:43 +00:00

Update install.md

replace 'djangouser' with 'myuser'
This commit is contained in:
Oliver 2022-06-24 20:12:05 +10:00 committed by GitHub
parent 5afd2fb8c1
commit 79e62b2248
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
```