IDstring`validate:"required,ulid" bun:"type:CHAR(26),pk,nullzero,notnull,unique"`// id of this item in the database
CreatedAttime.Time`validate:"-" bun:"type:timestamptz,nullzero,notnull,default:current_timestamp"`// when was item created
UpdatedAttime.Time`validate:"-" bun:"type:timestamptz,nullzero,notnull,default:current_timestamp"`// when was item last updated
AccountIDstring`validate:"required,ulid" bun:"type:CHAR(26),unique:statusfaveaccountstatus,nullzero,notnull"`// id of the account that created ('did') the fave
Account*Account`validate:"-" bun:"-"`// account that created the fave
TargetAccountIDstring`validate:"required,ulid" bun:"type:CHAR(26),nullzero,notnull"`// id the account owning the faved status
TargetAccount*Account`validate:"-" bun:"-"`// account owning the faved status
StatusIDstring`validate:"required,ulid" bun:"type:CHAR(26),unique:statusfaveaccountstatus,nullzero,notnull"`// database id of the status that has been 'faved'
Status*Status`validate:"-" bun:"-"`// the faved status
URIstring`validate:"required,url" bun:",nullzero,notnull,unique"`// ActivityPub URI of this fave