You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 11, 2022. It is now read-only.
- alias mysql='mysql --socket=/run/mysql-5.6/mysqld.sock'
- if [[ "$DB" == "pgsql" || "$DB" == "" ]]; then psql -c "CREATE DATABASE nymph_testing;" -U postgres; fi
- if [[ "$DB" == "mysql" || "$DB" == "" ]]; then mysql -e "CREATE DATABASE IF NOT EXISTS nymph_testing;" -uroot; fi
- if [[ "$DB" == "mysql" || "$DB" == "" ]]; then mysql -e "GRANT ALL PRIVILEGES ON nymph_testing.* TO 'travis'@'127.0.0.1' WITH GRANT OPTION;" -uroot; fi