Skip to content

Commit d23f3d6

Browse files
FilipFilip
Filip
authored and
Filip
committed
Merge branch 'master' of github.com:inplayer-org/backend-interns into user-store
2 parents cfedb9d + 756570a commit d23f3d6

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -1 +1,14 @@
11
package entities
2+
3+
import (
4+
"time"
5+
)
6+
7+
type TransactionHistory struct {
8+
Id int `db: "id"`
9+
UserId int `db: "user_id"`
10+
AccountId int `db:"account_id"`
11+
Amount float64 `db: "amount"`
12+
Action string `db: "action"`
13+
CreatedAt time.Time `db: "created_at"`
14+
}

0 commit comments

Comments
 (0)