aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--activerecord/CHANGELOG2
-rwxr-xr-xactiverecord/Rakefile2
2 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index c7779b6efa..0724ff24c1 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* rake build_mysql_database grants permissions to rails@localhost. #5501 [brianegge@yahoo.com]
+
* PostgreSQL: support microsecond time resolution. #5492 [alex@msgpad.com]
* Add AssociationCollection#sum since the method_missing invokation has been shadowed by Enumerable#sum.
diff --git a/activerecord/Rakefile b/activerecord/Rakefile
index 623dd5aaa5..9f12bedf10 100755
--- a/activerecord/Rakefile
+++ b/activerecord/Rakefile
@@ -41,6 +41,8 @@ desc 'Build the MySQL test databases'
task :build_mysql_databases do
%x( mysqladmin create activerecord_unittest )
%x( mysqladmin create activerecord_unittest2 )
+ %x( mysql -e "grant all on activerecord_unittest.* to rails@localhost" )
+ %x( mysql -e "grant all on activerecord_unittest2.* to rails@localhost" )
%x( mysql activerecord_unittest < #{File.join(SCHEMA_PATH, 'mysql.sql')} )
%x( mysql activerecord_unittest < #{File.join(SCHEMA_PATH, 'mysql2.sql')} )
end