summaryrefslogtreecommitdiffstats
path: root/models/topic.go
diff options
context:
space:
mode:
authorLunny Xiao <xiaolunwen@gmail.com>2020-12-27 07:28:47 +0800
committerGitHub <noreply@github.com>2020-12-26 23:28:47 +0000
commitcf9d4716310638ca047e93e476886b4e4ae0ce39 (patch)
tree844bef20295af9f8d21e889243044cea6bd8efb8 /models/topic.go
parent236e70f1359ae46818c3916f21401ef4bacf3eaf (diff)
downloadgitea-cf9d4716310638ca047e93e476886b4e4ae0ce39.tar.gz
gitea-cf9d4716310638ca047e93e476886b4e4ae0ce39.zip
Change topic name size from 25 to 50 (#14150)
* Change topic name size from 25 to 50 * recreateTable requires full bean definition Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: zeripath <art27@cantab.net>
Diffstat (limited to 'models/topic.go')
-rw-r--r--models/topic.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/models/topic.go b/models/topic.go
index 6be4f10295..1969c57db8 100644
--- a/models/topic.go
+++ b/models/topic.go
@@ -26,7 +26,7 @@ var topicPattern = regexp.MustCompile(`^[a-z0-9][a-z0-9-]*$`)
// Topic represents a topic of repositories
type Topic struct {
ID int64 `xorm:"pk autoincr"`
- Name string `xorm:"UNIQUE VARCHAR(25)"`
+ Name string `xorm:"UNIQUE VARCHAR(50)"`
RepoCount int
CreatedUnix timeutil.TimeStamp `xorm:"INDEX created"`
UpdatedUnix timeutil.TimeStamp `xorm:"INDEX updated"`