Merge pull request #23 from SirNavith/application-setup-command-fix

fix SQL command syntax in Application Setup command
This commit is contained in:
aptalca 2019-02-10 01:22:20 -05:00 committed by GitHub
commit df258f8a32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -140,7 +140,7 @@ Once the MariaDB container is deployed, you can enter the following commands int
from shell: mysql -u root -p
CREATE DATABASE bookstackapp;
GRANT USAGE ON *.* TO 'myuser'@'%' IDENTIFIED BY 'mypassword';
GRANT ALL privileges ON `bookstackapp`.* TO 'myuser'@%;
GRANT ALL privileges ON `bookstackapp`.* TO 'myuser'@'%';
FLUSH PRIVILEGES;
```