models.go 818 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. // Code generated by sqlc. DO NOT EDIT.
  2. package db
  3. import (
  4. "database/sql"
  5. "time"
  6. )
  7. type ApAcceptedActivity struct {
  8. ID int32
  9. Iri string
  10. Actor string
  11. Type string
  12. Timestamp time.Time
  13. }
  14. type ApFollower struct {
  15. Iri string
  16. Inbox string
  17. Name sql.NullString
  18. Username string
  19. Image sql.NullString
  20. Request string
  21. CreatedAt sql.NullTime
  22. ApprovedAt sql.NullTime
  23. DisabledAt sql.NullTime
  24. }
  25. type ApOutbox struct {
  26. Iri string
  27. Value []byte
  28. Type string
  29. CreatedAt sql.NullTime
  30. LiveNotification sql.NullBool
  31. }
  32. type IpBan struct {
  33. IpAddress string
  34. Notes sql.NullString
  35. CreatedAt sql.NullTime
  36. }
  37. type Notification struct {
  38. ID int32
  39. Channel string
  40. Destination string
  41. CreatedAt sql.NullTime
  42. }