Latest game update reflections
This commit is contained in:
16
lib/dbmapping/orders_completion.go
Normal file
16
lib/dbmapping/orders_completion.go
Normal file
@@ -0,0 +1,16 @@
|
||||
// i2_bot – Instinct PokememBro Bot
|
||||
// Copyright (c) 2017 Vladimir "fat0troll" Hodakov
|
||||
|
||||
package dbmapping
|
||||
|
||||
import (
|
||||
"time"
|
||||
)
|
||||
|
||||
// OrderCompletion is a struct, which represents `orders_completions` table item in databse.
|
||||
type OrderCompletion struct {
|
||||
ID int `db:"id"`
|
||||
OrderID int `db:"order_id"`
|
||||
ExecutorID int `db:"executor_id"`
|
||||
CreatedAt time.Time `db:"created_at"`
|
||||
}
|
Reference in New Issue
Block a user