18 lines
422 B
Go
18 lines
422 B
Go
// i2_bot – Instinct PokememBro Bot
|
||
// Copyright (c) 2017 Vladimir "fat0troll" Hodakov
|
||
|
||
package dbmapping
|
||
|
||
import (
|
||
// stdlib
|
||
"time"
|
||
)
|
||
|
||
// PokememeLocation is a struct, which represents `pokememes_locations` table item in databse.
|
||
type PokememeLocation struct {
|
||
ID int `db:"id"`
|
||
PokememeID int `db:"pokememe_id"`
|
||
LocationID int `db:"location_id"`
|
||
CreatedAt time.Time `db:"created_at"`
|
||
}
|