models.go 898 B

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