File "create-testing-database.sh"

Full Path: /home/fundopuh/trader.fxex.org/vendor/laravel/sail/database/mysql/create-testing-database.sh
File size: 196 bytes
MIME-type: text/x-shellscript
Charset: utf-8

#!/usr/bin/env bash

mysql --user=root --password="$MYSQL_ROOT_PASSWORD" <<-EOSQL
    CREATE DATABASE IF NOT EXISTS testing;
    GRANT ALL PRIVILEGES ON \`testing%\`.* TO '$MYSQL_USER'@'%';
EOSQL