mirror of https://github.com/flarum/flarum
Do not attempt to create database when it exists
parent
c090d0ebc3
commit
d433b8f5c8
|
@ -69,7 +69,7 @@ else
|
|||
echo "source ~/.aliases" >> ~/.bashrc
|
||||
fi
|
||||
|
||||
mysql -u root -proot -e 'create database flarum'
|
||||
mysql -u root -proot -e 'create database if not exists flarum'
|
||||
|
||||
### Setup flarum/core and install dependencies ###
|
||||
cd /vagrant/flarum/core
|
||||
|
|
Loading…
Reference in New Issue