initial completion

This commit is contained in:
2026-05-07 15:51:38 +02:00
parent f211cfc7db
commit 3b1368e16d
36 changed files with 1576 additions and 6 deletions
@@ -0,0 +1,15 @@
package migrations
import (
"github.com/forgeo/forgebucket/internal/models"
"xorm.io/xorm"
)
func Run006(engine *xorm.Engine) error {
return engine.Sync2(
&models.RepoDefaultReviewer{},
&models.PrReviewer{},
&models.RepoDefaultDescription{},
&models.RepoExcludedFiles{},
)
}