removed unnecessary index

This commit is contained in:
kolaente 2018-06-06 14:36:38 +02:00
parent 0da2e34adc
commit e18627c101
No known key found for this signature in database
GPG Key ID: F40E70337AB24C9B

View File

@ -16,7 +16,7 @@ type IssueDependency struct {
UserID int64 `xorm:"NOT NULL"`
IssueID int64 `xorm:"UNIQUE(issue_dependency) NOT NULL"`
DependencyID int64 `xorm:"UNIQUE(issue_dependency) NOT NULL"`
CreatedUnix util.TimeStamp `xorm:"INDEX created"`
CreatedUnix util.TimeStamp `xorm:"created"`
UpdatedUnix util.TimeStamp `xorm:"updated"`
}