mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 06:48:56 +00:00
22 lines
532 B
Go
22 lines
532 B
Go
|
// Copyright 2023 The Forgejo Authors. All rights reserved.
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
package forgejo_v1_20 //nolint:revive
|
||
|
|
||
|
import (
|
||
|
"code.gitea.io/gitea/modules/timeutil"
|
||
|
|
||
|
"xorm.io/xorm"
|
||
|
)
|
||
|
|
||
|
func AddForgejoBlockedUser(x *xorm.Engine) error {
|
||
|
type ForgejoBlockedUser struct {
|
||
|
ID int64 `xorm:"pk autoincr"`
|
||
|
BlockID int64 `xorm:"index"`
|
||
|
UserID int64 `xorm:"index"`
|
||
|
CreatedUnix timeutil.TimeStamp `xorm:"created"`
|
||
|
}
|
||
|
|
||
|
return x.Sync(new(ForgejoBlockedUser))
|
||
|
}
|