mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-03 21:08:25 +00:00 
			
		
		
		
	@@ -32,8 +32,8 @@ var (
 | 
				
			|||||||
// Issue represents an issue or pull request of repository.
 | 
					// Issue represents an issue or pull request of repository.
 | 
				
			||||||
type Issue struct {
 | 
					type Issue struct {
 | 
				
			||||||
	ID              int64 `xorm:"pk autoincr"`
 | 
						ID              int64 `xorm:"pk autoincr"`
 | 
				
			||||||
	RepoID          int64 `xorm:"INDEX"`
 | 
						RepoID          int64 `xorm:"INDEX UNIQUE(repo_index)"`
 | 
				
			||||||
	Index           int64 // Index in one repository.
 | 
						Index           int64 `xorm:"UNIQUE(repo_index)"` // Index in one repository.
 | 
				
			||||||
	Name            string
 | 
						Name            string
 | 
				
			||||||
	Repo            *Repository `xorm:"-"`
 | 
						Repo            *Repository `xorm:"-"`
 | 
				
			||||||
	PosterID        int64
 | 
						PosterID        int64
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user