remove UNIQUE from cards.card_name

This commit is contained in:
Peter Rounce 2023-02-28 15:47:37 +00:00
parent 9dc6d70ba4
commit 62c0db37d5
5 changed files with 29 additions and 33 deletions

View file

@ -32,7 +32,7 @@ func Wipeboltcard(w http.ResponseWriter, r *http.Request) {
card_count, err := db.Get_card_name_count(card_name)
if card_count == 0 {
msg := "the card name does not exist in the database"
msg := "wipeboltcard: the card name does not exist in the database"
log.Warn(msg)
resp_err.Write_message(w, msg)
return