summaryrefslogtreecommitdiffstats
path: root/models/migrations/v25.go
blob: da74e27c2863a54e27d55403212d3aae80d34e20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2017 Gitea. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.

package migrations

import (
	"fmt"

	"xorm.io/xorm"
)

func addUserOpenIDShow(x *xorm.Engine) error {
	if err := x.Sync2(new(UserOpenID)); err != nil {
		return fmt.Errorf("Sync2: %v", err)
	}
	return nil
}