mirror of https://github.com/zulip/zulip.git
6 lines
282 B
Bash
Executable File
6 lines
282 B
Bash
Executable File
#!/bin/sh
|
|
echo "drop database humbug; create database humbug DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci;" | mysql
|
|
python manage.py syncdb --noinput
|
|
echo "ALTER TABLE auth_user ADD UNIQUE INDEX (email);" | mysql
|
|
python manage.py populate_db --replay-old-messages -n0
|