From a9387e5ed0f1cc272d037d50b76cc88339aac772 Mon Sep 17 00:00:00 2001 From: lijunshi Date: Sun, 28 Apr 2024 15:17:51 +0800 Subject: [PATCH] fix:fix ci error 7 --- tests/schema_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/schema_test.go b/tests/schema_test.go index 13c9ea48..f13502b3 100644 --- a/tests/schema_test.go +++ b/tests/schema_test.go @@ -754,7 +754,7 @@ func getKeysFromMap(m map[string]*schemas.Index) []string { type SyncTestUser struct { - Id int `xorm:"pk autoincr 'id' comment('primary key')"` + Id int64 `xorm:"pk autoincr 'id' comment('primary key')"` Name string `xorm:"'name' notnull comment('nickname')" json:"name"` }