mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 07:44:25 +00:00
43 lines
869 B
Go
43 lines
869 B
Go
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package migrations
|
|
|
|
import (
|
|
"xorm.io/xorm"
|
|
)
|
|
|
|
func renameRepoIsBareToIsEmpty(x *xorm.Engine) error {
|
|
type Repository struct {
|
|
ID int64 `xorm:"pk autoincr"`
|
|
IsBare bool
|
|
IsEmpty bool `xorm:"INDEX"`
|
|
}
|
|
|
|
sess := x.NewSession()
|
|
defer sess.Close()
|
|
if err := sess.Begin(); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := sess.Sync2(new(Repository)); err != nil {
|
|
return err
|
|
}
|
|
if _, err := sess.Exec("UPDATE repository SET is_empty = is_bare;"); err != nil {
|
|
return err
|
|
}
|
|
if err := sess.Commit(); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := sess.Begin(); err != nil {
|
|
return err
|
|
}
|
|
if err := dropTableColumns(sess, "repository", "is_bare"); err != nil {
|
|
return err
|
|
}
|
|
|
|
return sess.Commit()
|
|
}
|