1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-13 22:17:20 +00:00

Use batch insert on migrating repository to make the process faster (#7050)

* Use batch insert on migrating repository to make the process faster

* fix lint

* fix tests

* fix comments
This commit is contained in:
Lunny Xiao
2019-06-29 21:38:22 +08:00
committed by GitHub
parent e463bdaf8d
commit 462284e2f5
7 changed files with 343 additions and 242 deletions

View File

@ -9,6 +9,7 @@ import "time"
// Comment is a standard comment information
type Comment struct {
IssueIndex int64
PosterName string
PosterEmail string
Created time.Time