20 lines
535 B
Go
20 lines
535 B
Go
// i2_bot – Instinct PokememBro Bot
|
||
// Copyright (c) 2017 Vladimir "fat0troll" Hodakov
|
||
|
||
package dbmappings
|
||
|
||
import (
|
||
// stdlib
|
||
"time"
|
||
)
|
||
|
||
type Players struct {
|
||
Id int `db:"id"`
|
||
Telegram_id int `db:"telegram_id"`
|
||
League_id int `db:"league_id"`
|
||
Squad_id int `db:"squad_id"`
|
||
Status string `db:"status"`
|
||
Created_at time.Time `db:"created_at"`
|
||
Updated_at time.Time `db:"updated_at"`
|
||
}
|