mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
added rake db:create that executes mysql:build_databases and postgresql:build_databases
This commit is contained in:
parent
760b8d37d4
commit
9f789364b2
1 changed files with 9 additions and 0 deletions
|
@ -39,6 +39,15 @@ namespace :test do
|
|||
end
|
||||
end
|
||||
|
||||
namespace :db do
|
||||
task :create do
|
||||
puts "*** creating mysql databases now ***"
|
||||
Rake::Task['mysql:build_databases'].execute
|
||||
puts "*** creating postgresql databases now ***"
|
||||
Rake::Task['postgresql:build_databases'].execute
|
||||
end
|
||||
end
|
||||
|
||||
%w( mysql mysql2 postgresql sqlite3 sqlite3_mem firebird db2 oracle sybase openbase frontbase jdbcmysql jdbcpostgresql jdbcsqlite3 jdbcderby jdbch2 jdbchsqldb ).each do |adapter|
|
||||
Rake::TestTask.new("test_#{adapter}") { |t|
|
||||
adapter_short = adapter == 'db2' ? adapter : adapter[/^[a-z0-9]+/]
|
||||
|
|
Loading…
Reference in a new issue