Passport/pkg/database/migrator.go
2024-01-28 16:17:38 +08:00

22 lines
376 B
Go

package database
import (
"code.smartsheep.studio/hydrogen/passport/pkg/models"
"gorm.io/gorm"
)
func RunMigration(source *gorm.DB) error {
if err := source.AutoMigrate(
&models.Account{},
&models.AuthFactor{},
&models.AccountProfile{},
&models.AccountContact{},
&models.AuthSession{},
&models.AuthChallenge{},
); err != nil {
return err
}
return nil
}