mirror of
https://github.com/github/rails.git
synced 2026-01-29 08:18:03 -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:
@@ -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.
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user