diff options
-rwxr-xr-x | scripts/reset_db.sh | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/scripts/reset_db.sh b/scripts/reset_db.sh deleted file mode 100755 index 51568ca..0000000 --- a/scripts/reset_db.sh +++ /dev/null @@ -1,13 +0,0 @@ -#! /bin/bash - -sudo -u postgres dropdb pytask -sudo -u postgres createdb -O pytask pytask -rm -r pytask/profile/migrations/ -rm -r pytask/taskapp/migrations/ -./bin/django schemamigration profile --initial -./bin/django schemamigration taskapp --initial -./bin/django syncdb -./bin/django migrate profile -./bin/django migrate taskapp -./bin/django loaddata sites_fixture.json -./bin/django loaddata profile_fixture.json |