authserver/homestead/scripts/create-mysql.sh
author durandn
Thu, 12 Nov 2015 18:10:25 +0100
changeset 180 4a9743b78a49
parent 8 5a0cbbe0922a
permissions -rw-r--r--
Small fixes on css, buttons text and placeholder text

#!/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";