diff options
author | 2021-05-09 20:34:27 +0200 | |
---|---|---|
committer | 2021-05-09 20:34:27 +0200 | |
commit | dc338dc881ead40723f0540aac7fe894f58b174d (patch) | |
tree | a000a065ffe219683f68520dd66b12aa1506a9fa /internal/gtsmodel/instance.go | |
parent | Fix token sweep (#19) (diff) | |
download | gotosocial-dc338dc881ead40723f0540aac7fe894f58b174d.tar.xz |
Webfinger + Small fixes (#20)
Diffstat (limited to 'internal/gtsmodel/instance.go')
-rw-r--r-- | internal/gtsmodel/instance.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/gtsmodel/instance.go b/internal/gtsmodel/instance.go index ac7c990e3..6860627e2 100644 --- a/internal/gtsmodel/instance.go +++ b/internal/gtsmodel/instance.go @@ -15,7 +15,7 @@ type Instance struct { // When was this instance created in the db? CreatedAt time.Time `pg:"type:timestamp,notnull,default:now()"` // When was this instance last updated in the db? - UpdatedAt time.Time `pg:"type:timestamp,notnull,default:now()"` + UpdatedAt time.Time `pg:"type:timestamp,notnull,default:now()"` // When was this instance suspended, if at all? SuspendedAt time.Time // ID of any existing domain block for this instance in the database |