|
12345678910111213141516 |
- package models
-
- import "code.gitea.io/gitea/modules/timeutil"
-
- type PointAccountLog struct {
- ID int64 `xorm:"pk autoincr"`
- AccountId int64 `xorm:"INDEX NOT NULL"`
- UserId int64 `xorm:"INDEX NOT NULL"`
- Type string `xorm:"NOT NULL"`
- SourceId string `xorm:"INDEX NOT NULL"`
- PointsAmount int64 `xorm:"NOT NULL"`
- AmountBefore int64 `xorm:"NOT NULL"`
- AmountAfter int64 `xorm:"NOT NULL"`
- AccountVersion int64 `xorm:"NOT NULL"`
- CreatedUnix timeutil.TimeStamp `xorm:"INDEX created"`
- }
|