Skip to content

Commit

Permalink
[PPP-4776] update to mysql create quartz script to handle if user alr…
Browse files Browse the repository at this point in the history
…eady exists
  • Loading branch information
ddiroma authored and peterrinehart committed Oct 31, 2024
1 parent 41dbf5f commit dbe7866
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

CREATE DATABASE IF NOT EXISTS `quartz` DEFAULT CHARACTER SET latin1;

CREATE USER 'pentaho_user'@'localhost' identified by 'password';
CREATE USER IF NOT EXISTS 'pentaho_user'@'localhost' identified by 'password';
GRANT ALL PRIVILEGES ON quartz.* to 'pentaho_user'@'localhost' WITH GRANT OPTION;

USE `quartz`;
Expand Down

0 comments on commit dbe7866

Please sign in to comment.