aboutsummaryrefslogtreecommitdiffstats
path: root/modules/migrations/base/milestone.go
diff options
context:
space:
mode:
author6543 <6543@obermui.de>2021-01-21 20:33:58 +0100
committerGitHub <noreply@github.com>2021-01-21 20:33:58 +0100
commit81c833d92d04e0a5579e7168aba548dad7e17451 (patch)
treec928f1b43fc6e2f27603193f0eed657f0760c96d /modules/migrations/base/milestone.go
parentb5570d3e680570343c1552bfc972b19b161209cd (diff)
downloadgitea-81c833d92d04e0a5579e7168aba548dad7e17451.tar.gz
gitea-81c833d92d04e0a5579e7168aba548dad7e17451.zip
Add support to migrate from gogs (#14342)
Add support to migrate gogs: * issues * comments * labels * milestones * wiki Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: Andrew Thornton <art27@cantab.net>
Diffstat (limited to 'modules/migrations/base/milestone.go')
-rw-r--r--modules/migrations/base/milestone.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/migrations/base/milestone.go b/modules/migrations/base/milestone.go
index 8736aa6cfd..921968fcb5 100644
--- a/modules/migrations/base/milestone.go
+++ b/modules/migrations/base/milestone.go
@@ -15,5 +15,5 @@ type Milestone struct {
Created time.Time
Updated *time.Time
Closed *time.Time
- State string
+ State string // open, closed
}