mirror of
https://github.com/zulip/zulip.git
synced 2025-11-05 06:23:38 +00:00
9 lines
257 B
Bash
Executable File
9 lines
257 B
Bash
Executable File
#!/bin/sh -xe
|
|
|
|
echo "DROP SCHEMA zulip CASCADE; CREATE SCHEMA zulip;" | python manage.py dbshell
|
|
|
|
python manage.py syncdb --noinput
|
|
python manage.py migrate
|
|
python manage.py createcachetable third_party_api_results
|
|
python manage.py initialize_enterprise_db
|