mirror of
https://github.com/go-gitea/gitea
synced 2024-11-04 21:29:12 +01:00
Fix index column deletion (#2651)
This commit is contained in:
parent
4b2c8ca533
commit
a79af9cf6f
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ func removeIndexColumnFromRepoUnitTable(x *xorm.Engine) (err error) {
|
|||
case setting.UseSQLite3:
|
||||
log.Warn("Unable to drop columns in SQLite")
|
||||
case setting.UseMySQL, setting.UsePostgreSQL, setting.UseMSSQL, setting.UseTiDB:
|
||||
if _, err := x.Exec("ALTER TABLE repo_unit DROP COLUMN index"); err != nil {
|
||||
if _, err := x.Exec("ALTER TABLE repo_unit DROP COLUMN `index`"); err != nil {
|
||||
return fmt.Errorf("DROP COLUMN index: %v", err)
|
||||
}
|
||||
default:
|
||||
|
|
Loading…
Reference in a new issue