gitea源码

v271.go 346B

123456789101112131415161718
  1. // Copyright 2023 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. package v1_21
  4. import (
  5. "code.gitea.io/gitea/modules/timeutil"
  6. "xorm.io/xorm"
  7. )
  8. func AddArchivedUnixColumInLabelTable(x *xorm.Engine) error {
  9. type Label struct {
  10. ArchivedUnix timeutil.TimeStamp `xorm:"DEFAULT NULL"`
  11. }
  12. return x.Sync(new(Label))
  13. }