development/docker/mysql/00-setup.sql
2025-12-24 14:26:32 -08:00

6 lines
158 B
SQL

create database if not exists testing;
grant all on testing.* TO 'pterodactyl'@'%';
grant all on `testing\_test_%`.* TO 'pterodactyl'@'%';
flush privileges;