# HG changeset patch # User Madhusudan.C.S # Date 1295106679 -19800 # Node ID 265dbd81c451a9717a9db5427f5bece2a1e28bdc # Parent c631194cec2a760f315ee62459992be8458157de Remove initial south migrations also during reset of the database. diff -r c631194cec2a -r 265dbd81c451 scripts/reset_db.sh --- a/scripts/reset_db.sh Sat Jan 15 21:20:35 2011 +0530 +++ b/scripts/reset_db.sh Sat Jan 15 21:21:19 2011 +0530 @@ -2,6 +2,10 @@ 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