You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gotosocial/internal/db/bundb/migrations/20211113114307_init
Julian-Samuel Gebühr 1f39275c0f
[bugfix] Allow lowercase emoji shortcode in frontend (#1851)
* Replace pinafore with semaphore

* Typo

* Allow lowercase emoji shortcode in frontend

* Fix failing test (corrected expected outcome)
2 years ago
..
README.md First db migration (#297) 3 years ago
account.go [chore] Improve copyright header handling (#1608) 2 years ago
application.go [chore] Improve copyright header handling (#1608) 2 years ago
block.go [chore] Improve copyright header handling (#1608) 2 years ago
client.go [chore] Improve copyright header handling (#1608) 2 years ago
domainblock.go [chore] Improve copyright header handling (#1608) 2 years ago
emaildomainblock.go [chore] Improve copyright header handling (#1608) 2 years ago
emoji.go [bugfix] Allow lowercase emoji shortcode in frontend (#1851) 2 years ago
follow.go [chore] Improve copyright header handling (#1608) 2 years ago
followrequest.go [chore] Improve copyright header handling (#1608) 2 years ago
instance.go [chore] Improve copyright header handling (#1608) 2 years ago
mediaattachment.go [chore] Improve copyright header handling (#1608) 2 years ago
mention.go [chore] Improve copyright header handling (#1608) 2 years ago
notification.go [chore] Improve copyright header handling (#1608) 2 years ago
routersession.go [chore] Improve copyright header handling (#1608) 2 years ago
status.go [chore] Improve copyright header handling (#1608) 2 years ago
statusbookmark.go [chore] Improve copyright header handling (#1608) 2 years ago
statusfave.go [chore] Improve copyright header handling (#1608) 2 years ago
statusmute.go [chore] Improve copyright header handling (#1608) 2 years ago
tag.go [chore] Improve copyright header handling (#1608) 2 years ago
token.go [chore] Improve copyright header handling (#1608) 2 years ago
user.go [chore] Improve copyright header handling (#1608) 2 years ago

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!