2022-10-17 01:29:26 +02:00
|
|
|
// Copyright 2022 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2022-10-17 01:29:26 +02:00
|
|
|
|
2022-12-08 09:21:37 +01:00
|
|
|
package v1_18 //nolint
|
2022-10-17 01:29:26 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"code.gitea.io/gitea/modules/timeutil"
|
|
|
|
|
|
|
|
"xorm.io/xorm"
|
|
|
|
)
|
|
|
|
|
|
|
|
type SystemSetting struct {
|
|
|
|
ID int64 `xorm:"pk autoincr"`
|
|
|
|
SettingKey string `xorm:"varchar(255) unique"` // ensure key is always lowercase
|
|
|
|
SettingValue string `xorm:"text"`
|
|
|
|
Version int `xorm:"version"` // prevent to override
|
|
|
|
Created timeutil.TimeStamp `xorm:"created"`
|
|
|
|
Updated timeutil.TimeStamp `xorm:"updated"`
|
|
|
|
}
|
|
|
|
|
2022-11-02 09:54:36 +01:00
|
|
|
func CreateSystemSettingsTable(x *xorm.Engine) error {
|
2023-10-05 03:08:19 +02:00
|
|
|
return x.Sync(new(SystemSetting))
|
2022-10-17 01:29:26 +02:00
|
|
|
}
|