2020-10-13 00:01:57 +00:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-10-13 00:01:57 +00:00
|
|
|
|
2022-11-02 08:54:36 +00:00
|
|
|
package v1_13 //nolint
|
2020-10-13 00:01:57 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"code.gitea.io/gitea/modules/timeutil"
|
|
|
|
|
|
|
|
"xorm.io/xorm"
|
|
|
|
)
|
|
|
|
|
2022-11-02 08:54:36 +00:00
|
|
|
func AddTimeStamps(x *xorm.Engine) error {
|
2020-10-13 00:01:57 +00:00
|
|
|
// this will add timestamps where it is useful to have
|
|
|
|
|
|
|
|
// Star represents a starred repo by an user.
|
|
|
|
type Star struct {
|
|
|
|
CreatedUnix timeutil.TimeStamp `xorm:"INDEX created"`
|
|
|
|
}
|
2023-08-13 19:17:21 +00:00
|
|
|
if err := x.Sync(new(Star)); err != nil {
|
2020-10-13 00:01:57 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Label represents a label of repository for issues.
|
|
|
|
type Label struct {
|
|
|
|
CreatedUnix timeutil.TimeStamp `xorm:"INDEX created"`
|
|
|
|
UpdatedUnix timeutil.TimeStamp `xorm:"INDEX updated"`
|
|
|
|
}
|
2023-08-13 19:17:21 +00:00
|
|
|
if err := x.Sync(new(Label)); err != nil {
|
2020-10-13 00:01:57 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-06-25 22:50:12 +00:00
|
|
|
// Follow represents relations of user and their followers.
|
2020-10-13 00:01:57 +00:00
|
|
|
type Follow struct {
|
|
|
|
CreatedUnix timeutil.TimeStamp `xorm:"INDEX created"`
|
|
|
|
}
|
2023-08-13 19:17:21 +00:00
|
|
|
if err := x.Sync(new(Follow)); err != nil {
|
2020-10-13 00:01:57 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Watch is connection request for receiving repository notification.
|
|
|
|
type Watch struct {
|
|
|
|
CreatedUnix timeutil.TimeStamp `xorm:"INDEX created"`
|
|
|
|
UpdatedUnix timeutil.TimeStamp `xorm:"INDEX updated"`
|
|
|
|
}
|
2023-08-13 19:17:21 +00:00
|
|
|
if err := x.Sync(new(Watch)); err != nil {
|
2020-10-13 00:01:57 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Collaboration represent the relation between an individual and a repository.
|
|
|
|
type Collaboration struct {
|
|
|
|
CreatedUnix timeutil.TimeStamp `xorm:"INDEX created"`
|
|
|
|
UpdatedUnix timeutil.TimeStamp `xorm:"INDEX updated"`
|
|
|
|
}
|
2023-08-13 19:17:21 +00:00
|
|
|
return x.Sync(new(Collaboration))
|
2020-10-13 00:01:57 +00:00
|
|
|
}
|