0
0
mirror of https://github.com/go-gitea/gitea.git synced 2025-07-26 11:04:27 -04:00
2024-10-28 23:39:02 +01:00

14 lines
303 B
Go

// Copyright 2024 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package v1_23 //nolint
import "xorm.io/xorm"
func AddDefaultUnitToRepository(x *xorm.Engine) error {
type Repository struct {
DefaultUnit int `xorm:"NOT NULL DEFAULT 1"`
}
return x.Sync(new(Repository))
}