From d06f89ed3fe3982a64dc67192e10ebb10569a4d2 Mon Sep 17 00:00:00 2001 From: Lynne Date: Mon, 20 Jan 2020 12:02:22 +1000 Subject: [PATCH] better mysql instructions --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 0de7b23..ad8b950 100644 --- a/README.md +++ b/README.md @@ -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 ```