mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-19 16:31:01 +00:00
8 lines
143 B
Go
8 lines
143 B
Go
|
package model
|
||
|
|
||
|
type Log struct {
|
||
|
ID int64 `meddler:"log_id,pk"`
|
||
|
JobID int64 `meddler:"log_job_id"`
|
||
|
Data []byte `meddler:"log_data"`
|
||
|
}
|