Your IP : 3.21.104.16


Current Path : /proc/self/root/home/lentoinv/props/vendor/laravel/sail/database/mysql/
Upload File :
Current File : //proc/self/root/home/lentoinv/props/vendor/laravel/sail/database/mysql/create-testing-database.sh

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

?>