Browse Source

change length of some repository's columns (#7652)

tags/v1.10.0-rc1
Lunny Xiao 4 years ago
parent
commit
0c927b1606
No account linked to committer's email address
3 changed files with 23 additions and 3 deletions
  1. 2
    0
      models/migrations/migrations.go
  2. 18
    0
      models/migrations/v90.go
  3. 3
    3
      models/repo.go

+ 2
- 0
models/migrations/migrations.go View File

@@ -234,6 +234,8 @@ var migrations = []Migration{
NewMigration("add commit status context field to commit_status", addCommitStatusContext),
// v89 -> v90
NewMigration("add original author/url migration info to issues, comments, and repo ", addOriginalMigrationInfo),
// v90 -> v91
NewMigration("change length of some repository columns", changeSomeColumnsLengthOfRepo),
}

// Migrate database to current version

+ 18
- 0
models/migrations/v90.go View File

@@ -0,0 +1,18 @@
// Copyright 2019 The Gitea Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.

package migrations

import "github.com/go-xorm/xorm"

func changeSomeColumnsLengthOfRepo(x *xorm.Engine) error {
type Repository struct {
ID int64 `xorm:"pk autoincr"`
Description string `xorm:"TEXT"`
Website string `xorm:"VARCHAR(2048)"`
OriginalURL string `xorm:"VARCHAR(2048)"`
}

return x.Sync2(new(Repository))
}

+ 3
- 3
models/repo.go View File

@@ -134,9 +134,9 @@ type Repository struct {
Owner *User `xorm:"-"`
LowerName string `xorm:"UNIQUE(s) INDEX NOT NULL"`
Name string `xorm:"INDEX NOT NULL"`
Description string
Website string
OriginalURL string
Description string `xorm:"TEXT"`
Website string `xorm:"VARCHAR(2048)"`
OriginalURL string `xorm:"VARCHAR(2048)"`
DefaultBranch string

NumWatches int

Loading…
Cancel
Save