1
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-08-25 21:44:20 -04:00
gitea/models/migrations/v1_8/v77.go

18 lines
373 B
Go
Raw Normal View History

// Copyright 2019 The Gitea Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package v1_8 // nolint
import (
2019-10-17 05:26:49 -04:00
"xorm.io/xorm"
)
func AddUserDefaultTheme(x *xorm.Engine) error {
type User struct {
Theme string `xorm:"VARCHAR(30) NOT NULL DEFAULT ''"`
}
return x.Sync2(new(User))
}