mirror of https://github.com/zulip/zulip.git
9 lines
310 B
Bash
Executable File
9 lines
310 B
Bash
Executable File
#!/bin/sh -xe
|
|
|
|
echo "DROP SCHEMA humbug CASCADE; CREATE SCHEMA humbug;" | python manage.py dbshell
|
|
|
|
python manage.py syncdb --noinput --settings=humbug.setup_hack_settings
|
|
python manage.py migrate
|
|
python manage.py createcachetable third_party_api_results
|
|
python manage.py populate_db --replay-old-messages -n0
|