scripts/reset_db.sh
author Madhusudan.C.S <madhusudancs@gmail.com>
Wed, 19 Jan 2011 19:16:24 +0530
changeset 476 00b966284465
parent 441 10f16121a46b
permissions -rwxr-xr-x
Add about links to left sidebar which redirects to textbooks and fossee main pages.

#! /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