summaryrefslogtreecommitdiff
path: root/lib/tasks/db.rake
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tasks/db.rake')
-rw-r--r--lib/tasks/db.rake7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/tasks/db.rake b/lib/tasks/db.rake
new file mode 100644
index 00000000000..664e75494b8
--- /dev/null
+++ b/lib/tasks/db.rake
@@ -0,0 +1,7 @@
+namespace :db do
+ namespace :schema do
+ task 'dump' do
+ Rake::Task['db:schema:cache:dump'].invoke
+ end
+ end
+end