From 2f26878e33a4ce58f041153731e6185fd908a5b7 Mon Sep 17 00:00:00 2001 From: kim Date: Mon, 6 Jan 2025 14:58:20 +0000 Subject: [PATCH] code comment --- internal/gtsmodel/status.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/gtsmodel/status.go b/internal/gtsmodel/status.go index d8be8a70f..d28898ed1 100644 --- a/internal/gtsmodel/status.go +++ b/internal/gtsmodel/status.go @@ -28,7 +28,7 @@ import ( type Status struct { ID string `bun:"type:CHAR(26),pk,nullzero,notnull,unique"` // id of this item in the database CreatedAt time.Time `bun:"type:timestamptz,nullzero,notnull,default:current_timestamp"` // when was item created - EditedAt time.Time `bun:"type:timestamptz,nullzero"` // + EditedAt time.Time `bun:"type:timestamptz,nullzero"` // when this status was last edited (if set) FetchedAt time.Time `bun:"type:timestamptz,nullzero"` // when was item (remote) last fetched. PinnedAt time.Time `bun:"type:timestamptz,nullzero"` // Status was pinned by owning account at this time. URI string `bun:",unique,nullzero,notnull"` // activitypub URI of this status