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