Archived
1

Add karma field to players

Karma will be used for inactive users filtering
This commit is contained in:
2018-05-05 09:50:07 +04:00
parent b8af1740fb
commit 0a5361ee09
6 changed files with 36 additions and 2 deletions

View File

@@ -15,6 +15,7 @@ type Player struct {
TelegramID int `db:"telegram_id"`
LeagueID int `db:"league_id"`
Status string `db:"status"`
Karma int `db:"karma"`
CreatedAt time.Time `db:"created_at"`
UpdatedAt time.Time `db:"updated_at"`
}