fixed match win/loss/ties

This commit is contained in:
2021-10-08 17:15:06 +02:00
parent 1fda101a35
commit 1816c5a2b5
28 changed files with 363 additions and 654 deletions

View File

@@ -7,8 +7,6 @@ const (
Label = "match"
// FieldID holds the string denoting the id field in the database.
FieldID = "id"
// FieldMatchID holds the string denoting the match_id field in the database.
FieldMatchID = "match_id"
// FieldShareCode holds the string denoting the share_code field in the database.
FieldShareCode = "share_code"
// FieldMap holds the string denoting the map field in the database.
@@ -56,7 +54,6 @@ const (
// Columns holds all SQL columns for match fields.
var Columns = []string{
FieldID,
FieldMatchID,
FieldShareCode,
FieldMap,
FieldDate,