AccountIDstring`validate:"required,ulid" bun:"type:CHAR(26),nullzero,notnull"`// id of the account that created ('did') the mute
Account*Account`validate:"-" bun:"rel:belongs-to"`// pointer to the account specified by accountID
TargetAccountIDstring`validate:"required,ulid" bun:"type:CHAR(26),nullzero,notnull"`// id the account owning the muted status (can be the same as accountID)
TargetAccount*Account`validate:"-" bun:"rel:belongs-to"`// pointer to the account specified by targetAccountID
StatusIDstring`validate:"required,ulid" bun:"type:CHAR(26),nullzero,notnull"`// database id of the status that has been muted
Status*Status`validate:"-" bun:"rel:belongs-to"`// pointer to the muted status specified by statusID