Display db:drop description in ActiveRecord

This commit is contained in:
Yoshiyuki Hirano 2018-04-03 14:23:47 +09:00
parent 9facd9a903
commit b278e2f5c6
1 changed files with 3 additions and 1 deletions

View File

@ -41,9 +41,11 @@ namespace :test do
end
end
desc "Build MySQL and PostgreSQL test databases"
namespace :db do
desc "Build MySQL and PostgreSQL test databases"
task create: ["db:mysql:build", "db:postgresql:build"]
desc "Drop MySQL and PostgreSQL test databases"
task drop: ["db:mysql:drop", "db:postgresql:drop"]
end