mirror of
https://github.com/pterodactyl/development.git
synced 2026-02-03 17:38:49 -06:00
Use the correct test DB name (#25)
This commit is contained in:
parent
24da65a7cb
commit
d5cc04da24
4
.github/workflows/panel.yaml
vendored
4
.github/workflows/panel.yaml
vendored
@ -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
|
||||
|
||||
4
.github/workflows/wings.yaml
vendored
4
.github/workflows/wings.yaml
vendored
@ -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
|
||||
|
||||
@ -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;
|
||||
Loading…
x
Reference in New Issue
Block a user