diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2019-07-29 11:29:42 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-29 11:29:42 +0800 |
commit | 0c927b1606a0c38c1016b1544b2f33635504e735 (patch) | |
tree | 9d95b1475193b9926ddb313e1606a660da15a066 /models/repo.go | |
parent | 31a1fe175f022078fa2894112b9526c426b76ba5 (diff) | |
download | gitea-0c927b1606a0c38c1016b1544b2f33635504e735.tar.gz gitea-0c927b1606a0c38c1016b1544b2f33635504e735.zip |
change length of some repository's columns (#7652)
Diffstat (limited to 'models/repo.go')
-rw-r--r-- | models/repo.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/models/repo.go b/models/repo.go index ba14155395..501a2c9120 100644 --- a/models/repo.go +++ b/models/repo.go @@ -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 |