aboutsummaryrefslogtreecommitdiffstats
path: root/servo/management/commands/dbdump.py
diff options
context:
space:
mode:
Diffstat (limited to 'servo/management/commands/dbdump.py')
-rw-r--r--servo/management/commands/dbdump.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/servo/management/commands/dbdump.py b/servo/management/commands/dbdump.py
deleted file mode 100644
index 58651a8..0000000
--- a/servo/management/commands/dbdump.py
+++ /dev/null
@@ -1,13 +0,0 @@
-# -*- coding: utf-8 -*-
-
-import subprocess
-from django.conf import settings
-from django.core.management.base import BaseCommand
-
-
-class Command(BaseCommand):
- help = "Dumps DB of this instance to specified file"
-
- def handle(self, *args, **options):
- dbname = settings.DATABASES['default']['NAME']
- #subprocess.call('pg_dump', '-Fc', dbname, '-U', 'pgsql' > "${BACKUPDIR}/${db}_$(date "+%Y%m%d_%H%M").pgdump"