mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-10 19:11:08 +00:00
Change build message column type to text (#1252)
Fixes #1115 Fixes #1194
This commit is contained in:
parent
f9dd6518c0
commit
86bc8b46ed
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ type Build struct {
|
||||||
Refspec string `json:"refspec" xorm:"build_refspec"`
|
Refspec string `json:"refspec" xorm:"build_refspec"`
|
||||||
Remote string `json:"remote" xorm:"build_remote"`
|
Remote string `json:"remote" xorm:"build_remote"`
|
||||||
Title string `json:"title" xorm:"build_title"`
|
Title string `json:"title" xorm:"build_title"`
|
||||||
Message string `json:"message" xorm:"build_message"`
|
Message string `json:"message" xorm:"TEXT 'build_message'"`
|
||||||
Timestamp int64 `json:"timestamp" xorm:"build_timestamp"`
|
Timestamp int64 `json:"timestamp" xorm:"build_timestamp"`
|
||||||
Sender string `json:"sender" xorm:"build_sender"` // uses reported user for webhooks and name of cron for cron pipelines
|
Sender string `json:"sender" xorm:"build_sender"` // uses reported user for webhooks and name of cron for cron pipelines
|
||||||
Avatar string `json:"author_avatar" xorm:"build_avatar"`
|
Avatar string `json:"author_avatar" xorm:"build_avatar"`
|
||||||
|
|
Loading…
Reference in a new issue