nim-vagrant/scripts/create-mysql.sh

6 lines
159 B
Bash
Raw Normal View History

2018-12-25 14:55:43 +00:00
#!/usr/bin/env bash
DB=$1;
mysql -uhomestead -psecret -e "CREATE DATABASE IF NOT EXISTS \`$DB\` DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_unicode_ci";