diff options
author | kolaente <k@knt.li> | 2020-10-11 22:27:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-11 21:27:20 +0100 |
commit | 64133126cdb842a047b2cd104c2f177f6e83f79a (patch) | |
tree | 8bfd86c1f7a3c565c19552c588758674384796e3 /models | |
parent | e35f7e81ae7ed8388a8011baa43cb4faf42ebfe0 (diff) | |
download | gitea-64133126cdb842a047b2cd104c2f177f6e83f79a.tar.gz gitea-64133126cdb842a047b2cd104c2f177f6e83f79a.zip |
Update golangci-lint to version 1.31.0 (#13102)
This PR updates golangci-lint to the latest version 1.31.0.
The upgrade introduced a new check for which I've fixed or disabled most cases.
Signed-off-by: kolaente <k@knt.li>
Diffstat (limited to 'models')
-rw-r--r-- | models/migrations/migrations.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/migrations/migrations.go b/models/migrations/migrations.go index ea1bf59649..d36b984d93 100644 --- a/models/migrations/migrations.go +++ b/models/migrations/migrations.go @@ -680,7 +680,7 @@ func dropTableColumns(sess *xorm.Session, tableName string, columnNames ...strin cols += "`" + strings.ToLower(col) + "`" } sql := fmt.Sprintf("SELECT Name FROM SYS.DEFAULT_CONSTRAINTS WHERE PARENT_OBJECT_ID = OBJECT_ID('%[1]s') AND PARENT_COLUMN_ID IN (SELECT column_id FROM sys.columns WHERE lower(NAME) IN (%[2]s) AND object_id = OBJECT_ID('%[1]s'))", - tableName, strings.Replace(cols, "`", "'", -1)) + tableName, strings.ReplaceAll(cols, "`", "'")) constraints := make([]string, 0) if err := sess.SQL(sql).Find(&constraints); err != nil { return fmt.Errorf("Find constraints: %v", err) |