feat(server): added endpoint for content of build log

This commit is contained in:
Jef Roosens 2022-05-07 15:41:49 +02:00
parent 393e641a76
commit 139142fcec
Signed by untrusted user: Jef Roosens
GPG key ID: B75D4F293C7052DB
2 changed files with 28 additions and 1 deletions

View file

@ -3,10 +3,12 @@ module db
import time
pub struct BuildLog {
pub:
id int [primary; sql: serial]
repo_id int [nonull]
start_time time.Time [nonull]
end_time time.Time [nonull]
arch string [nonull]
exit_code int [nonull]
}