fix: Correct branch shown in build logs

This commit is contained in:
Andras Bacsai
2022-04-20 23:02:19 +02:00
parent e16643c48c
commit 8ebff72cde
5 changed files with 5 additions and 2 deletions

View File

@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "Build" ADD COLUMN "branch" TEXT;

View File

@@ -183,6 +183,7 @@ model Build {
githubAppId String?
gitlabAppId String?
commit String?
branch String?
status String? @default("queued")
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt