14 lines
219 B
Go
14 lines
219 B
Go
package helpers
|
|
|
|
import (
|
|
"CatsOfMastodonBotGo/internal/models"
|
|
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
func AddMigrations(db *gorm.DB) {
|
|
db.AutoMigrate(&models.Post{}, &models.MediaAttachment{}, &models.Account{}, models.ComUser{})
|
|
}
|
|
|
|
|