Skip to content

Commit

Permalink
correct mistake in sql syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Hillier committed Nov 5, 2018
1 parent 993668d commit 6618eed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ app_setup_block: |
from shell: mysql -u root -p
CREATE DATABASE bookstackapp;
GRANT USAGE ON *.* TO 'myuser'@'%' IDENTIFIED BY 'mypassword';
GRANT ALL privileges ON 'bookstackapp'.* TO 'myuser'@localhost;
GRANT ALL privileges ON `bookstackapp`.* TO 'myuser'@%;
FLUSH PRIVILEGES;
```
Expand Down

0 comments on commit 6618eed

Please sign in to comment.