diff options
Diffstat (limited to 'modules/migrations/base/repo.go')
-rw-r--r-- | modules/migrations/base/repo.go | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/modules/migrations/base/repo.go b/modules/migrations/base/repo.go index 5cfb0de920..d2052da90d 100644 --- a/modules/migrations/base/repo.go +++ b/modules/migrations/base/repo.go @@ -7,13 +7,14 @@ package base // Repository defines a standard repository information type Repository struct { - Name string - Owner string - IsPrivate bool - IsMirror bool - Description string - AuthUsername string - AuthPassword string - CloneURL string - OriginalURL string + Name string + Owner string + IsPrivate bool + IsMirror bool + Description string + AuthUsername string + AuthPassword string + CloneURL string + OriginalURL string + DefaultBranch string } |