mirror of https://github.com/zulip/zulip.git
10 lines
348 B
Bash
Executable File
10 lines
348 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
|
|
python manage.py createcachetable third_party_api_results
|
|
echo "CREATE UNIQUE INDEX ON auth_user (email);" | python manage.py dbshell
|
|
python manage.py populate_db --replay-old-messages -n0
|