Files
zulip/tools/do-destroy-rebuild-database
Luke Faraone 2f6bc7ca1b Use dbshell instead of direct psql invocations
(imported from commit 6dd28dc353c0d79626c2853961bcb6873929e274)
2013-02-28 15:46:33 -05:00

9 lines
290 B
Bash
Executable File

#!/bin/sh -xe
echo "DROP SCHEMA humbug CASCADE; CREATE SCHEMA humbug;" | python manage.py dbshell
python manage.py syncdb --noinput
python manage.py migrate
echo "CREATE UNIQUE INDEX ON auth_user (email);" | python manage.py dbshell
python manage.py populate_db --replay-old-messages -n0