14 lines
221 B
Go
14 lines
221 B
Go
package migrations
|
|
|
|
import (
|
|
"github.com/forgeo/forgebucket/internal/models"
|
|
"xorm.io/xorm"
|
|
)
|
|
|
|
func Run013(engine *xorm.Engine) error {
|
|
return engine.Sync2(
|
|
&models.GitOpsConfig{},
|
|
&models.GitOpsDriftEvent{},
|
|
)
|
|
}
|