summaryrefslogtreecommitdiff
path: root/scripts/profile_schemamigration.sh
blob: 9dc7ff500e75ad40ec1188bdb34ba924f3a43b00 (plain)
1
2
3
4
5
6
7
8
#! /bin/bash

pg_dump pytask -U pytask -W > ~/pytaskdbdumps/dbdump`date +%Y%m%d`.dump
./bin/django dumpscript > ~/pytaskdbdumps/dbdumpscript`date +%Y%m%d`.dump
./bin/django dumpdata > ~/pytaskdbdumps/dbdumpdata`date +%Y%m%d`.dump
./bin/django schemamigration profile --auto
./bin/django migrate profile