blob: 057cf924a551cf9c1701527dea6493fa71d8bfaa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#! /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
|