super-mario-maker/database/update_course_meta_binary.go
2023-04-08 14:05:02 -04:00

10 lines
269 B
Go

package database
import "log"
func UpdateCourseMetaBinary(courseID uint64, metaBinary []byte) {
if err := cassandraClusterSession.Query(`UPDATE pretendo_smm.courses SET meta_binary=? WHERE data_id=?`, metaBinary, courseID).Exec(); err != nil {
log.Fatal(err)
}
}