- Java 13
- MySQL, MariaDB (default config)
create database empresa;
create User 'spring_dev'@'%' identified by 'spring_dev_password';
grant all on empresa.* to 'spring_dev'@'%';
create User 'spring_prod'@'%' identified by 'spring_prod_password';
grant select, insert, delete, update on empresa.* to 'spring_prod'@'%';