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

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

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