Use the correct test DB name (#25)

This commit is contained in:
Dane Everitt 2025-12-24 14:26:32 -08:00 committed by GitHub
parent 24da65a7cb
commit d5cc04da24
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 7 additions and 7 deletions

View File

@ -4,12 +4,12 @@ on:
push:
branches:
- master
permissions:
packages: write
jobs:
build-and-push:
name: Build and Push
runs-on: ubuntu-latest
permissions:
packages: write
steps:
- uses: actions/checkout@v4
- uses: docker/setup-qemu-action@v3

View File

@ -4,11 +4,11 @@ on:
push:
branches:
- master
permissions:
packages: write
jobs:
build-and-push:
runs-on: ubuntu-latest
permissions:
packages: write
steps:
- uses: actions/checkout@v4
- uses: docker/setup-qemu-action@v3

View File

@ -1,6 +1,6 @@
create database if not exists pterodactyl_test;
create database if not exists testing;
grant all on pterodactyl_test.* TO 'pterodactyl'@'%';
grant all on `pterodactyl\_test\_test_%`.* TO 'pterodactyl'@'%';
grant all on testing.* TO 'pterodactyl'@'%';
grant all on `testing\_test_%`.* TO 'pterodactyl'@'%';
flush privileges;