mirror of
https://github.com/zulip/zulip.git
synced 2025-11-14 19:06:09 +00:00
9 lines
290 B
Bash
Executable File
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
|