summaryrefslogtreecommitdiffstats
path: root/models/forgejo_migrations/v15.go
blob: d7ed19ca7cb88bb2575ba662d89b9e7e27c8c8b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Copyright 2024 The Forgejo Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package forgejo_migrations //nolint:revive

import (
	"time"

	"code.gitea.io/gitea/modules/timeutil"

	"xorm.io/xorm"
)

type (
	SoftwareNameType string
)

type NodeInfo struct {
	SoftwareName SoftwareNameType
}

type FederationHost struct {
	ID             int64              `xorm:"pk autoincr"`
	HostFqdn       string             `xorm:"host_fqdn UNIQUE INDEX VARCHAR(255) NOT NULL"`
	NodeInfo       NodeInfo           `xorm:"extends NOT NULL"`
	LatestActivity time.Time          `xorm:"NOT NULL"`
	Created        timeutil.TimeStamp `xorm:"created"`
	Updated        timeutil.TimeStamp `xorm:"updated"`
}

func CreateFederationHostTable(x *xorm.Engine) error {
	return x.Sync(new(FederationHost))
}