douhui3760 2019-09-13 17:44
浏览 232
已采纳

如何使多个模型在gorm中自动迁移

i can see the documentation we do automigrate like this, db.AutoMigrate(&model.TheTodo{})

how about if we have a lot of multiples models? db.AutoMigrate(&model.TheTodo{}, &model.TheBlog{}, &model.Employee{}, and many more...... )

will gorm create that table if we put like that? and is that any way to make inside AutoMigrate to make short?

db.AutoMigrate(allmodels)

would it possible ?

  • 写回答

1条回答 默认 最新

  • douji1077 2019-09-13 19:03
    关注

    You can do:

    db.AutoMigrate(
        &User{}, 
        &Product{},
        &Order{},
    )
    

    If you want to make the inside "short", you could do:

    var models := []interface{&User{}, &Product{}, &Order{}}
    
    db.Automigrate(models...)
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?