From 92a56bd0e21636352fe8449c7e7adeb8067cf6e4 Mon Sep 17 00:00:00 2001 From: Christoxz <1christix@gmail.com> Date: Sat, 11 Nov 2023 14:57:29 +0100 Subject: [PATCH] Update sail.blade.md (#263) --- source/docs/v3/integrations/sail.blade.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/docs/v3/integrations/sail.blade.md b/source/docs/v3/integrations/sail.blade.md index c3a44ff..efc1b46 100644 --- a/source/docs/v3/integrations/sail.blade.md +++ b/source/docs/v3/integrations/sail.blade.md @@ -10,7 +10,7 @@ section: content > The default Sail user's name is determined by the `DB_USERNAME` variable in your `.env`. For this guide, we'll be using the username `sail`. -The default Sail user can only perform the create, read, update and delete operations in the central database. To allow the user to perform these operations in the tenant databases too, log in to Sail's MySQL shell as the root user (`docker-compose exec mysql bash`, then `mysql -u root -p` – by default, the password is determined by the `DB_PASSWORD` variable in your `.env`) and grant the Sail user access to all databases by running the following statements: +The default Sail user can only perform the create, read, update and delete operations in the central database. To allow the user to perform these operations in the tenant databases too, log in to Sail's MySQL shell as the root user (`docker compose exec mysql bash`, then `mysql -u root -p` – by default, the password is determined by the `DB_PASSWORD` variable in your `.env`) and grant the Sail user access to all databases by running the following statements: ```sh GRANT ALL PRIVILEGES ON *.* TO 'sail'@'%' WITH GRANT OPTION;