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)
2023-06-02 17:42:14 +02:00
..
README.md First db migration (#297) 2021-11-13 17:30:01 +01:00
account.go [chore] Improve copyright header handling (#1608) 2023-03-12 16:00:57 +01:00
application.go [chore] Improve copyright header handling (#1608) 2023-03-12 16:00:57 +01:00
block.go [chore] Improve copyright header handling (#1608) 2023-03-12 16:00:57 +01:00
client.go [chore] Improve copyright header handling (#1608) 2023-03-12 16:00:57 +01:00
domainblock.go [chore] Improve copyright header handling (#1608) 2023-03-12 16:00:57 +01:00
emaildomainblock.go [chore] Improve copyright header handling (#1608) 2023-03-12 16:00:57 +01:00
emoji.go [bugfix] Allow lowercase emoji shortcode in frontend (#1851) 2023-06-02 17:42:14 +02:00
follow.go [chore] Improve copyright header handling (#1608) 2023-03-12 16:00:57 +01:00
followrequest.go [chore] Improve copyright header handling (#1608) 2023-03-12 16:00:57 +01:00
instance.go [chore] Improve copyright header handling (#1608) 2023-03-12 16:00:57 +01:00
mediaattachment.go [chore] Improve copyright header handling (#1608) 2023-03-12 16:00:57 +01:00
mention.go [chore] Improve copyright header handling (#1608) 2023-03-12 16:00:57 +01:00
notification.go [chore] Improve copyright header handling (#1608) 2023-03-12 16:00:57 +01:00
routersession.go [chore] Improve copyright header handling (#1608) 2023-03-12 16:00:57 +01:00
status.go [chore] Improve copyright header handling (#1608) 2023-03-12 16:00:57 +01:00
statusbookmark.go [chore] Improve copyright header handling (#1608) 2023-03-12 16:00:57 +01:00
statusfave.go [chore] Improve copyright header handling (#1608) 2023-03-12 16:00:57 +01:00
statusmute.go [chore] Improve copyright header handling (#1608) 2023-03-12 16:00:57 +01:00
tag.go [chore] Improve copyright header handling (#1608) 2023-03-12 16:00:57 +01:00
token.go [chore] Improve copyright header handling (#1608) 2023-03-12 16:00:57 +01:00
user.go [chore] Improve copyright header handling (#1608) 2023-03-12 16:00:57 +01: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!