Guest User

Untitled

a guest
Jan 18th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. db := gorm.Open("mysql", ...)
  2. db.Set("gorm:table_options", "ENGINE=InnoDB")
  3. db.Set("gorm:table_options", "collation_connection=utf8_general_ci")
  4. // Migrate the schema
  5. db.AutoMigrate(&models.Currency{})
  6. db.AutoMigrate(&models.Rate{})
Add Comment
Please, Sign In to add comment