data := &member{
Country: "TAIWAN",
Id: "JOHNNY",
}
db.
Table("member").
Set("gorm:insert_option", "ON DUPLICATE KEY UPDATE country = VALUES(country), id = VALUES(id)").
Create(data)
Go to list of users who liked
More than 3 years have passed since last update.
data := &member{
Country: "TAIWAN",
Id: "JOHNNY",
}
db.
Table("member").
Set("gorm:insert_option", "ON DUPLICATE KEY UPDATE country = VALUES(country), id = VALUES(id)").
Create(data)
Register as a new user and use Qiita more conveniently
Go to list of users who liked