Files
ForgeBucket/internal/models/migrations/017_oci.go
T
2026-05-12 22:34:26 +02:00

17 lines
281 B
Go

package migrations
import (
"github.com/forgeo/forgebucket/internal/models"
"xorm.io/xorm"
)
func Run017(engine *xorm.Engine) error {
return engine.Sync2(
&models.OCIRepository{},
&models.OCIManifest{},
&models.OCITag{},
&models.OCIBlob{},
&models.OCIUpload{},
)
}