fixed sql script testing setup

This commit is contained in:
zurdi
2023-08-11 10:00:47 +02:00
parent 9afcc92692
commit e006b33007

View File

@@ -1,4 +1,4 @@
CREATE DATABASE romm_test;
CREATE USER 'romm_test'@'%' IDENTIFIED BY 'passwd';
CREATE DATABASE IF NOT EXISTS romm_test;
CREATE USER IF NOT EXISTS 'romm_test'@'%' IDENTIFIED BY 'passwd';
GRANT ALL PRIVILEGES ON romm_test.* TO 'romm_test'@'%' WITH GRANT OPTION;
FLUSH PRIVILEGES;