change length of some repository's columns (#7652)
This commit is contained in:
		
							parent
							
								
									31a1fe175f
								
							
						
					
					
						commit
						0c927b1606
					
				
					 3 changed files with 23 additions and 3 deletions
				
			
		|  | @ -234,6 +234,8 @@ var migrations = []Migration{ | ||||||
| 	NewMigration("add commit status context field to commit_status", addCommitStatusContext), | 	NewMigration("add commit status context field to commit_status", addCommitStatusContext), | ||||||
| 	// v89 -> v90
 | 	// v89 -> v90
 | ||||||
| 	NewMigration("add original author/url migration info to issues, comments, and repo ", addOriginalMigrationInfo), | 	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
 | // Migrate database to current version
 | ||||||
|  |  | ||||||
							
								
								
									
										18
									
								
								models/migrations/v90.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								models/migrations/v90.go
									
									
									
									
									
										Normal 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)) | ||||||
|  | } | ||||||
|  | @ -134,9 +134,9 @@ type Repository struct { | ||||||
| 	Owner         *User  `xorm:"-"` | 	Owner         *User  `xorm:"-"` | ||||||
| 	LowerName     string `xorm:"UNIQUE(s) INDEX NOT NULL"` | 	LowerName     string `xorm:"UNIQUE(s) INDEX NOT NULL"` | ||||||
| 	Name          string `xorm:"INDEX NOT NULL"` | 	Name          string `xorm:"INDEX NOT NULL"` | ||||||
| 	Description   string | 	Description   string `xorm:"TEXT"` | ||||||
| 	Website       string | 	Website       string `xorm:"VARCHAR(2048)"` | ||||||
| 	OriginalURL   string | 	OriginalURL   string `xorm:"VARCHAR(2048)"` | ||||||
| 	DefaultBranch string | 	DefaultBranch string | ||||||
| 
 | 
 | ||||||
| 	NumWatches          int | 	NumWatches          int | ||||||
|  |  | ||||||
		Loading…
	
		Reference in a new issue