1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

rake build_mysql_database grants permissions to rails@localhost. Closes #5501.

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4503 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jeremy Kemper 2006-06-28 23:36:22 +00:00
parent 81a6a60dc6
commit a092749554
2 changed files with 4 additions and 0 deletions

View file

@ -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.

View file

@ -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