fix: ensure blocklist is singular
This commit is contained in:
parent
86c80aefaa
commit
4976874453
|
@ -11,3 +11,7 @@ type Blocklist struct {
|
||||||
Reason string
|
Reason string
|
||||||
BlockedAt time.Time
|
BlockedAt time.Time
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (Blocklist) TableName() string {
|
||||||
|
return "blocklist"
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue