better mysql instructions

This commit is contained in:
Lynne Megido 2020-01-20 12:02:22 +10:00
parent 00369be990
commit d06f89ed3f
Signed by: lynnesbian
GPG Key ID: F0A184B5213D9F90

View File

@ -27,8 +27,7 @@ If this doesn't work, try using ``pip`` instead. If it still doesn't work, you m
```
CREATE DATABASE `fedibooks`;
CREATE USER 'myuser' IDENTIFIED BY 'mypassword';
GRANT USAGE ON *.* TO 'myuser'@localhost IDENTIFIED BY 'mypassword';
GRANT ALL privileges ON `fedibooks`.* TO 'myuser'@localhost;
GRANT ALL PRIVILEGES ON `fedibooks`.* TO 'myuser';
FLUSH PRIVILEGES;
exit
```