2019-01-09 20:22:57 +03:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 21:20:29 +03:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-01-09 20:22:57 +03:00
|
|
|
|
2022-12-08 11:21:37 +03:00
|
|
|
package v1_8 //nolint
|
2019-01-09 20:22:57 +03:00
|
|
|
|
|
|
|
import (
|
2019-10-17 12:26:49 +03:00
|
|
|
"xorm.io/xorm"
|
2019-01-09 20:22:57 +03:00
|
|
|
)
|
|
|
|
|
2022-11-02 11:54:36 +03:00
|
|
|
func AddUserDefaultTheme(x *xorm.Engine) error {
|
2019-01-09 20:22:57 +03:00
|
|
|
type User struct {
|
2019-01-12 22:43:47 +03:00
|
|
|
Theme string `xorm:"VARCHAR(30) NOT NULL DEFAULT ''"`
|
2019-01-09 20:22:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return x.Sync2(new(User))
|
|
|
|
}
|