authserver/homestead/scripts/create-mysql.sh
author durandn
Mon, 17 Aug 2015 17:06:42 +0200
changeset 77 692b9d9fd29f
parent 8 5a0cbbe0922a
permissions -rw-r--r--
Adding Marker widget for creating, editing and displaying no-duration annotations + changes to iframes

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