From ec6b99e933716bac87f7a7525f3a036b838aed5a Mon Sep 17 00:00:00 2001
From: Madhusudan.C.S
Date: Thu, 20 Jan 2011 06:01:49 +0530
Subject: Remove the reset_db script. I should not be able to run it even in my
 dream.

---
 scripts/reset_db.sh | 13 -------------
 1 file changed, 13 deletions(-)
 delete mode 100755 scripts/reset_db.sh

(limited to 'scripts')

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
-- 
cgit