You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

point_account_log.go 651 B

12345678910111213141516
  1. package models
  2. import "code.gitea.io/gitea/modules/timeutil"
  3. type PointAccountLog struct {
  4. ID int64 `xorm:"pk autoincr"`
  5. AccountId int64 `xorm:"INDEX NOT NULL"`
  6. UserId int64 `xorm:"INDEX NOT NULL"`
  7. Type string `xorm:"NOT NULL"`
  8. SourceId string `xorm:"INDEX NOT NULL"`
  9. PointsAmount int64 `xorm:"NOT NULL"`
  10. AmountBefore int64 `xorm:"NOT NULL"`
  11. AmountAfter int64 `xorm:"NOT NULL"`
  12. AccountVersion int64 `xorm:"NOT NULL"`
  13. CreatedUnix timeutil.TimeStamp `xorm:"INDEX created"`
  14. }