2012-12-14 23:38:19 +01:00
|
|
|
#!/bin/sh -xe
|
2012-10-30 21:11:37 +01:00
|
|
|
|
2013-02-26 22:08:10 +01:00
|
|
|
echo "DROP SCHEMA humbug CASCADE; CREATE SCHEMA humbug;" | python manage.py dbshell
|
2012-10-30 21:11:37 +01:00
|
|
|
|
2012-10-04 17:02:51 +02:00
|
|
|
python manage.py syncdb --noinput
|
2013-02-22 23:51:08 +01:00
|
|
|
python manage.py migrate
|
2013-03-11 16:23:34 +01:00
|
|
|
python manage.py createcachetable third_party_api_results
|
2013-02-26 22:08:10 +01:00
|
|
|
echo "CREATE UNIQUE INDEX ON auth_user (email);" | python manage.py dbshell
|
2012-10-03 21:29:38 +02:00
|
|
|
python manage.py populate_db --replay-old-messages -n0
|