Files
teletypegames/domain/model.migrate.go
T
2025-12-07 11:32:45 +01:00

13 lines
131 B
Go

package domain
import (
"gorm.io/gorm"
)
func MigrateGoDatabase(db *gorm.DB) {
db.AutoMigrate(
Software{},
Release{},
)
}