Skip to content

Commit df258f8

Browse files
authored
Merge pull request #23 from SirNavith/application-setup-command-fix
fix SQL command syntax in Application Setup command
2 parents 851294a + 36bac60 commit df258f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ Once the MariaDB container is deployed, you can enter the following commands int
140140
from shell: mysql -u root -p
141141
CREATE DATABASE bookstackapp;
142142
GRANT USAGE ON *.* TO 'myuser'@'%' IDENTIFIED BY 'mypassword';
143-
GRANT ALL privileges ON `bookstackapp`.* TO 'myuser'@%;
143+
GRANT ALL privileges ON `bookstackapp`.* TO 'myuser'@'%';
144144
FLUSH PRIVILEGES;
145145
```
146146

0 commit comments

Comments
 (0)