Skip to content

Commit d5cc04d

Browse files
authored
Use the correct test DB name (#25)
1 parent 24da65a commit d5cc04d

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/panel.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ on:
44
push:
55
branches:
66
- master
7-
permissions:
8-
packages: write
97
jobs:
108
build-and-push:
119
name: Build and Push
1210
runs-on: ubuntu-latest
11+
permissions:
12+
packages: write
1313
steps:
1414
- uses: actions/checkout@v4
1515
- uses: docker/setup-qemu-action@v3

.github/workflows/wings.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ on:
44
push:
55
branches:
66
- master
7-
permissions:
8-
packages: write
97
jobs:
108
build-and-push:
119
runs-on: ubuntu-latest
10+
permissions:
11+
packages: write
1212
steps:
1313
- uses: actions/checkout@v4
1414
- uses: docker/setup-qemu-action@v3

docker/mysql/00-setup.sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
create database if not exists pterodactyl_test;
1+
create database if not exists testing;
22

3-
grant all on pterodactyl_test.* TO 'pterodactyl'@'%';
4-
grant all on `pterodactyl\_test\_test_%`.* TO 'pterodactyl'@'%';
3+
grant all on testing.* TO 'pterodactyl'@'%';
4+
grant all on `testing\_test_%`.* TO 'pterodactyl'@'%';
55

66
flush privileges;

0 commit comments

Comments
 (0)