authserver/homestead/scripts/create-mysql.sh
author julien <julien@erret.com>
Fri, 31 Jul 2015 18:33:02 +0200
changeset 67 6e041b15bc78
parent 8 5a0cbbe0922a
permissions -rw-r--r--
Move the header title of the annotationList box and LatestAnnotation Box, inside the widget

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