changeset 8 | 5a0cbbe0922a |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/authserver/homestead/scripts/create-mysql.sh Wed May 27 15:34:06 2015 +0200 @@ -0,0 +1,6 @@ +#!/usr/bin/env bash + +DB=$1; + +mysql -uhomestead -psecret -e "DROP DATABASE IF EXISTS \`$DB\`"; +mysql -uhomestead -psecret -e "CREATE DATABASE \`$DB\` DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_unicode_ci";