Files
gitea/models/migrations/v1_10/v93.go
2026-05-18 03:56:39 +08:00

16 lines
381 B
Go

// Copyright 2019 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package v1_10
import "code.gitea.io/gitea/models/db"
func AddEmailNotificationEnabledToUser(x db.EngineMigration) error {
// User see models/user.go
type User struct {
EmailNotificationsPreference string `xorm:"VARCHAR(20) NOT NULL DEFAULT 'enabled'"`
}
return x.Sync(new(User))
}