mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-08-03 00:45:22 +02:00
Drop the correct deleted branch table (#26028)
There's a typo in #22743 The correct table name is `deleted_branch` not `deleted_branches`
This commit is contained in:
parent
d36ddfe26c
commit
74ca4377ff
3 changed files with 15 additions and 1 deletions
|
@ -89,5 +89,5 @@ func AddBranchTable(x *xorm.Engine) error {
|
|||
}
|
||||
}
|
||||
|
||||
return x.DropTables("deleted_branches")
|
||||
return x.DropTables(new(DeletedBranch))
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue