summaryrefslogtreecommitdiffstats
path: root/models/migrations/v1_8/v77.go
blob: 8b199939245ff95c0e8c7dc6d6938a443769e3c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2019 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package v1_8 //nolint

import (
	"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))
}