mirror of
1
Fork 0
gotosocial/internal/gtsmodel
tsmethurst 8a36e11957 [chore/refactor] start moving account preferences to its own separate struct 2023-08-10 16:33:00 +02:00
..
README.md Prune unnecessary nullzeros, fixup db tags (#200) 2021-09-10 10:08:21 +02:00
account.go [chore/refactor] start moving account preferences to its own separate struct 2023-08-10 16:33:00 +02:00
accountnote.go [chore] Remove go-playground/validator (#2069) 2023-08-06 12:22:40 +02:00
accountpreferences.go [chore/refactor] start moving account preferences to its own separate struct 2023-08-10 16:33:00 +02:00
admin.go [chore] Remove go-playground/validator (#2069) 2023-08-06 12:22:40 +02:00
application.go [chore] Remove go-playground/validator (#2069) 2023-08-06 12:22:40 +02:00
block.go [chore] Remove go-playground/validator (#2069) 2023-08-06 12:22:40 +02:00
client.go [chore] Remove go-playground/validator (#2069) 2023-08-06 12:22:40 +02:00
domainblock.go [chore] Remove go-playground/validator (#2069) 2023-08-06 12:22:40 +02:00
emaildomainblock.go [chore] Remove go-playground/validator (#2069) 2023-08-06 12:22:40 +02:00
emoji.go [chore] Remove go-playground/validator (#2069) 2023-08-06 12:22:40 +02:00
emojicategory.go [chore] Remove go-playground/validator (#2069) 2023-08-06 12:22:40 +02:00
follow.go [chore] Remove go-playground/validator (#2069) 2023-08-06 12:22:40 +02:00
followrequest.go [chore] Remove go-playground/validator (#2069) 2023-08-06 12:22:40 +02:00
instance.go [chore] Remove go-playground/validator (#2069) 2023-08-06 12:22:40 +02:00
list.go [chore] Remove go-playground/validator (#2069) 2023-08-06 12:22:40 +02:00
marker.go [chore] Remove go-playground/validator (#2069) 2023-08-06 12:22:40 +02:00
mediaattachment.go [chore] Remove go-playground/validator (#2069) 2023-08-06 12:22:40 +02:00
mention.go [chore] Remove go-playground/validator (#2069) 2023-08-06 12:22:40 +02:00
notification.go [chore] Remove go-playground/validator (#2069) 2023-08-06 12:22:40 +02:00
report.go [chore] Remove go-playground/validator (#2069) 2023-08-06 12:22:40 +02:00
routersession.go [chore] Remove go-playground/validator (#2069) 2023-08-06 12:22:40 +02:00
status.go [chore] Remove go-playground/validator (#2069) 2023-08-06 12:22:40 +02:00
statusbookmark.go [chore] Remove go-playground/validator (#2069) 2023-08-06 12:22:40 +02:00
statusfave.go [chore] Remove go-playground/validator (#2069) 2023-08-06 12:22:40 +02:00
statusmute.go [chore] Remove go-playground/validator (#2069) 2023-08-06 12:22:40 +02:00
tag.go [chore] Remove go-playground/validator (#2069) 2023-08-06 12:22:40 +02:00
token.go [chore] Remove go-playground/validator (#2069) 2023-08-06 12:22:40 +02:00
tombstone.go [chore] Remove go-playground/validator (#2069) 2023-08-06 12:22:40 +02:00
user.go [chore] Remove go-playground/validator (#2069) 2023-08-06 12:22:40 +02:00

README.md

A note on when we should set data structures linked to objects in the database to use the bun nullzero tag -- this should only be done if the member type is a pointer, or if the this primitive type is literally invalid with an empty value (e.g. media IDs which when empty signifies a null database value, compared to say an account note which when empty could mean either an empty note OR null database value).

Obviously it is a little more complex than this in practice, but keep it in mind!