scripts/dumpdb.sh
author Madhusudan.C.S <madhusudancs@gmail.com>
Thu, 20 Jan 2011 17:42:46 +0530
changeset 498 9f04b7bcc333
parent 492 89f8e4266b1f
permissions -rwxr-xr-x
Add a new templatetag to render modified on and by line in documents. Add the necessary div tags, html templates, templatetag function and the CSS to give necessary layout and styling.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
483
5e9d16b5d5fb Adding a database dumpscript. It should be added to cron.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     1
#! /bin/bash
5e9d16b5d5fb Adding a database dumpscript. It should be added to cron.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     2
492
89f8e4266b1f Add time to filenames generated for dumps.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 487
diff changeset
     3
pg_dump pytask -U pytask -W > ~/pytaskdbdumps/dbdump`date +%Y%m%d%H%M%s`.dump
89f8e4266b1f Add time to filenames generated for dumps.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 487
diff changeset
     4
./bin/django dumpscript > ~/pytaskdbdumps/dbdumpscript`date +%Y%m%d%H%M%s`.dump
89f8e4266b1f Add time to filenames generated for dumps.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 487
diff changeset
     5
./bin/django dumpdata > ~/pytaskdbdumps/dbdumpdata`date +%Y%m%d%H%M%s`.dump
483
5e9d16b5d5fb Adding a database dumpscript. It should be added to cron.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     6