added gameban as separate thing

This commit is contained in:
2021-10-23 00:14:24 +02:00
parent 2c9dc3870f
commit cd6cd6bf58
13 changed files with 652 additions and 50 deletions

View File

@@ -23,6 +23,10 @@ const (
FieldVacDate = "vac_date"
// FieldVacCount holds the string denoting the vac_count field in the database.
FieldVacCount = "vac_count"
// FieldGameBanDate holds the string denoting the game_ban_date field in the database.
FieldGameBanDate = "game_ban_date"
// FieldGameBanCount holds the string denoting the game_ban_count field in the database.
FieldGameBanCount = "game_ban_count"
// FieldSteamUpdated holds the string denoting the steam_updated field in the database.
FieldSteamUpdated = "steam_updated"
// FieldSharecodeUpdated holds the string denoting the sharecode_updated field in the database.
@@ -62,6 +66,8 @@ var Columns = []string{
FieldVanityURLReal,
FieldVacDate,
FieldVacCount,
FieldGameBanDate,
FieldGameBanCount,
FieldSteamUpdated,
FieldSharecodeUpdated,
FieldAuthCode,