dkforest

A forum and chat platform (onion)
git clone https://git.dasho.dev/n0tr1v/dkforest.git
Log | Files | Refs | LICENSE

commit 050d419a8a6eb8d770fb704a13242988501ffcb9
parent 2fdf1164d06d373ee7403cae57f7256c66d01ea2
Author: n0tr1v <n0tr1v@protonmail.com>
Date:   Sun,  4 Dec 2022 22:47:46 -0500

Fix table name

Diffstat:
Mpkg/database/tableKarmaHistory.go | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/pkg/database/tableKarmaHistory.go b/pkg/database/tableKarmaHistory.go @@ -21,3 +21,7 @@ func CreateKarmaHistory(karma int64, description string, userID UserID, fromUser err = DB.Create(&out).Error return } + +func (KarmaHistory) TableName() string { + return "karma_history" +}