owncast/db/models.go
Gabe Kangas 19b9a8bdf6
Add support for IP-based bans (#1703)
* Add support for IP-based bans. Closes #1534

* Linter cleanup
2022-03-06 20:34:49 -08:00

42 lines
703 B
Go

// Code generated by sqlc. DO NOT EDIT.
package db
import (
"database/sql"
"time"
)
type ApAcceptedActivity struct {
ID int32
Iri string
Actor string
Type string
Timestamp time.Time
}
type ApFollower struct {
Iri string
Inbox string
Name sql.NullString
Username string
Image sql.NullString
Request string
CreatedAt sql.NullTime
ApprovedAt sql.NullTime
DisabledAt sql.NullTime
}
type ApOutbox struct {
Iri string
Value []byte
Type string
CreatedAt sql.NullTime
LiveNotification sql.NullBool
}
type IpBan struct {
IpAddress string
Notes sql.NullString
CreatedAt sql.NullTime
}