From ef94c77da392ace20a92b077da379de25215c1c1 Mon Sep 17 00:00:00 2001 From: Matt Simerson Date: Sat, 17 Feb 2024 19:34:45 -0800 Subject: [PATCH] enable mysql service --- sql/init-mysql.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/init-mysql.sh b/sql/init-mysql.sh index 602b168..9c21e3b 100755 --- a/sql/init-mysql.sh +++ b/sql/init-mysql.sh @@ -3,7 +3,7 @@ export MYSQL_PWD=root # AUTH="--defaults-extra-file=./sql/my-gha.cnf" -mysql --user=root -e 'DROP DATABASE nictool;' || exit 1 +# mysql --user=root -e 'DROP DATABASE IF EXISTS nictool;' || exit 1 mysql --user=root -e 'CREATE DATABASE nictool;' || exit 1 for f in './sql/*.sql';