1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-17 16:55:49 +00:00
gitea/models/migrations/v1_8/v77.go

17 lines
299 B
Go
Raw Normal View History

// Copyright 2019 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package v1_8 //nolint
import (
2019-10-17 09:26:49 +00:00
"xorm.io/xorm"
)
func AddUserDefaultTheme(x *xorm.Engine) error {
type User struct {
Theme string `xorm:"VARCHAR(30) NOT NULL DEFAULT ''"`
}
return x.Sync(new(User))
}