From b278e2f5c66bab9d7d4ca9ea87329979e3b506b0 Mon Sep 17 00:00:00 2001 From: Yoshiyuki Hirano Date: Tue, 3 Apr 2018 14:23:47 +0900 Subject: [PATCH] Display db:drop description in ActiveRecord --- activerecord/Rakefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/activerecord/Rakefile b/activerecord/Rakefile index 591c451da5..170c95b827 100644 --- a/activerecord/Rakefile +++ b/activerecord/Rakefile @@ -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