Remove the reset_db script. I should not be able to run it even in my dream.
authorMadhusudan.C.S <madhusudancs@gmail.com>
Thu, 20 Jan 2011 06:01:49 +0530
changeset 486 c1beaa06a767
parent 485 e56d4bb15349
child 487 dad3fd6464b8
Remove the reset_db script. I should not be able to run it even in my dream.
scripts/reset_db.sh
--- a/scripts/reset_db.sh	Thu Jan 20 06:00:17 2011 +0530
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -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