aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2014-01-01 07:38:15 -0800
committerRafael Mendonça França <rafaelmfranca@gmail.com>2014-01-01 07:38:15 -0800
commite015f4e2e3e962a3713f40e91aa049d47ed7c7f2 (patch)
tree93c10d24039596d5ca45a3d5052a3f349129996a /guides/source
parent3e1e36b5addc9b89ebcc6562d697dccb98e76a59 (diff)
parent85a1f7ae1e66cff7fa2cf8a1be3721da38acd579 (diff)
downloadrails-e015f4e2e3e962a3713f40e91aa049d47ed7c7f2.tar.gz
rails-e015f4e2e3e962a3713f40e91aa049d47ed7c7f2.tar.bz2
rails-e015f4e2e3e962a3713f40e91aa049d47ed7c7f2.zip
Merge pull request #13556 from yahonda/update_mysql_grant
Update grant statement to address #13549
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/development_dependencies_install.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/guides/source/development_dependencies_install.md b/guides/source/development_dependencies_install.md
index c4e5789a1a..4ee43b6a97 100644
--- a/guides/source/development_dependencies_install.md
+++ b/guides/source/development_dependencies_install.md
@@ -233,6 +233,8 @@ mysql> GRANT ALL PRIVILEGES ON activerecord_unittest.*
to 'rails'@'localhost';
mysql> GRANT ALL PRIVILEGES ON activerecord_unittest2.*
to 'rails'@'localhost';
+mysql> GRANT ALL PRIVILEGES ON inexistent_activerecord_unittest.*
+ to 'rails'@'localhost';
```
and create the test databases: