2
0
mirror of https://github.com/inventree/inventree-docs.git synced 2025-04-28 13:46:54 +00:00

Merge pull request #128 from sur5r/master

Fix database name in GRANT command
This commit is contained in:
Oliver 2021-07-03 12:01:02 +10:00 committed by GitHub
commit 692ee719bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -192,7 +192,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 blog_data.* TO 'djangouser'@'%';
mysql> GRANT ALL ON inventree.* TO 'djangouser'@'%';
mysql> FLUSH PRIVILEGES;
```