This is an automated email from the ASF dual-hosted git repository. likyh pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git
commit 76a5f0988cdb96d06567e899e3629a551eea9782 Author: Klesh Wong <[email protected]> AuthorDate: Tue Oct 18 15:49:01 2022 +0800 docs: add issue line for change_leadtimeminutes_to_int64 --- models/migrationscripts/20220929_change_leadtimeminutes_to_int64.go | 1 + 1 file changed, 1 insertion(+) diff --git a/models/migrationscripts/20220929_change_leadtimeminutes_to_int64.go b/models/migrationscripts/20220929_change_leadtimeminutes_to_int64.go index d789dc4a..553b4db7 100644 --- a/models/migrationscripts/20220929_change_leadtimeminutes_to_int64.go +++ b/models/migrationscripts/20220929_change_leadtimeminutes_to_int64.go @@ -38,6 +38,7 @@ func (Issues20220929) TableName() string { func (*changeLeadTimeMinutesToInt64) Up(basicRes core.BasicRes) errors.Error { // Yes, issues.lead_time_minutes might be negative, we ought to change the type // for the column from `uint` to `int64` + // related issue: https://github.com/apache/incubator-devlake/issues/3224 db := basicRes.GetDal() bakColumnName := "lead_time_minutes_20220929" err := db.RenameColumn("issues", "lead_time_minutes", bakColumnName)
