Files
CatsOfMastodonGo/internal/helpers/dbHelpers.go

14 lines
201 B
Go

package helpers
import (
"CatsOfMastodonBotGo/internal/models"
"gorm.io/gorm"
)
func AddMigrations(db *gorm.DB) {
db.AutoMigrate(&models.Post{}, &models.MediaAttachment{}, &models.Account{})
}