From f6e2b79dd8ac59e69c7ef1eacaba87b1b6360c26 Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Sun, 2 Jun 2024 11:01:08 +0800 Subject: [PATCH] Fix the possible migration failure on 286 with postgres 16 (#31209) Try to fix #31205 (cherry picked from commit 98a61040b1c83790b0e0e977188842f967ae357e) --- models/migrations/v1_22/v286.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/migrations/v1_22/v286.go b/models/migrations/v1_22/v286.go index 2d62d7788c..6a5f45122a 100644 --- a/models/migrations/v1_22/v286.go +++ b/models/migrations/v1_22/v286.go @@ -60,7 +60,7 @@ func addObjectFormatNameToRepository(x *xorm.Engine) error { // Here to catch weird edge-cases where column constraints above are // not applied by the DB backend - _, err := x.Exec("UPDATE repository set object_format_name = 'sha1' WHERE object_format_name = '' or object_format_name IS NULL") + _, err := x.Exec("UPDATE `repository` set `object_format_name` = 'sha1' WHERE `object_format_name` = '' or `object_format_name` IS NULL") return err }