Files

28 lines
499 B
Go
Raw Permalink Normal View History

2022-08-17 19:25:25 -04:00
// Copyright 2022 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2022-08-17 19:25:25 -04:00
2025-06-27 07:59:55 +02:00
package v1_18
2022-08-17 19:25:25 -04:00
import (
"xorm.io/xorm"
)
2022-11-02 16:54:36 +08:00
func CreateUserBadgesTable(x *xorm.Engine) error {
2022-08-17 19:25:25 -04:00
type Badge struct {
ID int64 `xorm:"pk autoincr"`
Description string
ImageURL string
}
type userBadge struct {
ID int64 `xorm:"pk autoincr"`
BadgeID int64
UserID int64 `xorm:"INDEX"`
}
2023-08-13 21:17:21 +02:00
if err := x.Sync(new(Badge)); err != nil {
2022-08-17 19:25:25 -04:00
return err
}
2023-08-13 21:17:21 +02:00
return x.Sync(new(userBadge))
2022-08-17 19:25:25 -04:00
}