copilot-swe-agent[bot]
63221dfec3
Complete XORM to GORM migration for internal/database/repo.go
- Replace import "xorm.io/xorm" with "gorm.io/gorm"
- Replace all Engine parameters with *gorm.DB
- Replace *xorm.Session parameters with *gorm.DB
- Convert all database queries from XORM to GORM syntax:
- e.ID(id).Get(&model) → db.First(&model, id).Error
- e.Insert(&model) → db.Create(&model).Error
- e.Update(&model) → db.Updates(&model).Error
- e.In("col", values) → db.Where("col IN ?", values)
- e.Find(&results) → db.Find(&results).Error
- e.Iterate() → db.FindInBatches()
- Convert transaction patterns from NewSession/Begin/Commit to db.Transaction()
- Replace global x variable with db
- Convert XORM AfterSet callback to GORM AfterFind hook
- Handle gorm.ErrRecordNotFound for missing records
- Fix related files: repositories.go, repo_collaboration.go, two_factor.go
Co-authored-by: unknwon <2946214+unknwon@users.noreply.github.com>
2026-01-24 16:00:27 +00:00
..
2026-01-22 08:20:53 -05:00
2026-01-22 08:20:53 -05:00
2024-02-18 19:39:41 -05:00
2026-01-08 19:32:15 -05:00
2026-01-22 08:20:53 -05:00
2026-01-08 19:32:15 -05:00
2026-01-22 08:20:53 -05:00
2026-01-24 00:43:07 +00:00
2026-01-22 08:20:53 -05:00
2026-01-24 01:21:38 +00:00
2026-01-24 00:51:00 +00:00
2026-01-22 08:20:53 -05:00
2026-01-08 19:32:15 -05:00
2026-01-24 00:51:36 +00:00
2026-01-22 08:20:53 -05:00
2026-01-24 15:43:22 +00:00
2026-01-08 19:32:15 -05:00
2026-01-22 08:20:53 -05:00
2026-01-08 19:32:15 -05:00
2026-01-22 08:20:53 -05:00
2026-01-08 19:32:15 -05:00
2026-01-22 08:20:53 -05:00
2026-01-08 19:32:15 -05:00
2026-01-24 00:44:38 +00:00
2026-01-08 19:32:15 -05:00
2026-01-24 00:45:29 +00:00
2025-12-03 20:11:14 -05:00
2025-12-03 20:11:14 -05:00
2026-01-24 00:42:51 +00:00
2026-01-08 19:32:15 -05:00
2026-01-08 19:32:15 -05:00
2026-01-24 01:07:23 +00:00
2026-01-24 00:52:55 +00:00
2026-01-08 19:32:15 -05:00
2026-01-22 08:20:53 -05:00
2026-01-08 19:32:15 -05:00
2026-01-22 08:20:53 -05:00
2026-01-08 19:32:15 -05:00
2026-01-22 08:20:53 -05:00
2026-01-24 15:48:04 +00:00
2026-01-24 00:47:06 +00:00
2026-01-22 08:20:53 -05:00
2026-01-24 16:00:27 +00:00
2026-01-08 19:32:15 -05:00
2026-01-22 08:20:53 -05:00
2026-01-22 08:20:53 -05:00
2026-01-22 07:17:34 -05:00
2026-01-24 16:00:27 +00:00
2026-01-08 19:32:15 -05:00
2026-01-24 16:00:27 +00:00
2026-01-08 19:32:15 -05:00
2026-01-24 01:15:23 +00:00
2026-01-24 16:00:27 +00:00
2026-01-22 22:30:27 -05:00
2026-01-22 22:30:27 -05:00
2026-01-22 08:20:53 -05:00
2026-01-21 22:22:07 -05:00
2026-01-22 08:20:53 -05:00
2026-01-22 08:20:53 -05:00
2026-01-22 08:20:53 -05:00
2026-01-22 08:20:53 -05:00
2026-01-24 01:00:42 +00:00
2026-01-22 11:00:27 -05:00
2026-01-22 11:00:27 -05:00