fix comment

This commit is contained in:
Dennis Eichhorn 2022-11-04 20:03:34 +01:00
parent 8170920ba4
commit 02f42dcdaa

View File

@ -3,7 +3,10 @@
# Include config
. config.sh
# Setting up database for demo and testing
# Setup database
echo "#################################################"
echo "Setup database"
echo "#################################################"
mysql -e 'drop database if exists oms;' -u ${DB_USER} --password="${DB_PASSWORD}"
mysql -e 'create database oms;' -u ${DB_USER} --password="${DB_PASSWORD}"