26 lines
409 B
Go
26 lines
409 B
Go
package database
|
|
|
|
import (
|
|
"git.solsynth.dev/hypernet/interactive/pkg/internal/models"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
var AutoMaintainRange = []any{
|
|
&models.Publisher{},
|
|
&models.Category{},
|
|
&models.Tag{},
|
|
&models.Post{},
|
|
&models.Reaction{},
|
|
&models.Subscription{},
|
|
}
|
|
|
|
func RunMigration(source *gorm.DB) error {
|
|
if err := source.AutoMigrate(
|
|
AutoMaintainRange...,
|
|
); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|