From 1f3842095737ab25482e8748a35cf82cca87c164 Mon Sep 17 00:00:00 2001 From: jvyden Date: Sat, 16 Oct 2021 21:36:37 -0400 Subject: [PATCH] use a different method of migration --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0ca09e91..1d7d48b5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,7 +50,7 @@ jobs: - name: Run database migrations if: ${{ matrix.os.prettyName == 'Linux' }} - run: cat DatabaseMigrations/*.sql | mysql -u lighthouse -p lighthouse lighthouse + run: mysql -B -u lighthouse -p lighthouse lighthouse < <(cat DatabaseMigations*.sql) - name: Test continue-on-error: true