Working with MySQL, when I use AutoMigrate e.g db.AutoMigrate(&User{}), GORM creates the users table with InnoDB. However I have want to use MyISAM engine (I ha
db.AutoMigrate(&User{})