25 lines
425 B
Go
25 lines
425 B
Go
package database
|
|
|
|
import (
|
|
"code.smartsheep.studio/hydrogen/interactive/pkg/models"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
func RunMigration(source *gorm.DB) error {
|
|
if err := source.AutoMigrate(
|
|
&models.Account{},
|
|
&models.AccountMembership{},
|
|
&models.Realm{},
|
|
&models.Category{},
|
|
&models.Tag{},
|
|
&models.Post{},
|
|
&models.PostLike{},
|
|
&models.PostDislike{},
|
|
&models.Attachment{},
|
|
); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|