summaryrefslogtreecommitdiffstats
path: root/models/forgejo_migrations/v13.go
blob: 614f68249db1e20425a70ea3effe5708f1e95c7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2024 The Forgejo Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package forgejo_migrations //nolint:revive

import "xorm.io/xorm"

func AddHideArchiveLinksToRelease(x *xorm.Engine) error {
	type Release struct {
		ID               int64 `xorm:"pk autoincr"`
		HideArchiveLinks bool  `xorm:"NOT NULL DEFAULT false"`
	}

	return x.Sync(&Release{})
}