This commit is contained in:
kolaente 2018-02-12 17:36:00 +01:00 committed by Konrad
parent e322fa36b2
commit 9584d3f097
No known key found for this signature in database
GPG Key ID: F40E70337AB24C9B
2 changed files with 3 additions and 4 deletions

View File

@ -51,9 +51,9 @@ func addIssueDependencies(x *xorm.Engine) (err error) {
NewTitle string
DependentIssueID int64
CommitID int64
Line int64
Content string `xorm:"TEXT"`
CommitID int64
Line int64
Content string `xorm:"TEXT"`
CreatedUnix TimeStamp `xorm:"INDEX created"`
UpdatedUnix TimeStamp `xorm:"INDEX updated"`

View File

@ -68,7 +68,6 @@ func AddDependency(ctx *context.Context) {
ctx.Redirect(url, http.StatusSeeOther)
}
// RemoveDependency removes the dependency
func RemoveDependency(ctx *context.Context) {
depID := ctx.QueryInt64("removeDependencyID")