Skip to content

Commit 21d87f7

Browse files
committed
Include command to create mysql user
The guide mentions that the 'rails' user is needed, but doesn't explicitly include the command to do so.
1 parent 42cfacf commit 21d87f7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

guides/source/development_dependencies_install.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,9 @@ We need first to delete `.bundle/config` because Bundler remembers in that file
141141
In order to be able to run the test suite against MySQL you need to create a user named `rails` with privileges on the test databases:
142142

143143
```bash
144+
$ mysql -uroot -p
145+
146+
mysql> CREATE USER 'rails'@'localhost';
144147
mysql> GRANT ALL PRIVILEGES ON activerecord_unittest.*
145148
to 'rails'@'localhost';
146149
mysql> GRANT ALL PRIVILEGES ON activerecord_unittest2.*

0 commit comments

Comments
 (0)