summaryrefslogtreecommitdiff
path: root/internal/gtsmodel/instance.go
diff options
context:
space:
mode:
authorLibravatar tobi <31960611+tsmethurst@users.noreply.github.com>2021-08-25 15:34:33 +0200
committerLibravatar GitHub <noreply@github.com>2021-08-25 15:34:33 +0200
commit2dc9fc1626507bb54417fc4a1920b847cafb27a2 (patch)
tree4ddeac479b923db38090aac8bd9209f3646851c1 /internal/gtsmodel/instance.go
parentManually approves followers (#146) (diff)
downloadgotosocial-2dc9fc1626507bb54417fc4a1920b847cafb27a2.tar.xz
Pg to bun (#148)
* start moving to bun * changing more stuff * more * and yet more * tests passing * seems stable now * more big changes * small fix * little fixes
Diffstat (limited to 'internal/gtsmodel/instance.go')
-rw-r--r--internal/gtsmodel/instance.go22
1 files changed, 11 insertions, 11 deletions
diff --git a/internal/gtsmodel/instance.go b/internal/gtsmodel/instance.go
index 7b453a0b3..5bfe942f7 100644
--- a/internal/gtsmodel/instance.go
+++ b/internal/gtsmodel/instance.go
@@ -5,22 +5,22 @@ import "time"
// Instance represents a federated instance, either local or remote.
type Instance struct {
// ID of this instance in the database
- ID string `pg:"type:CHAR(26),pk,notnull,unique"`
+ ID string `bun:"type:CHAR(26),pk,notnull,unique"`
// Instance domain eg example.org
- Domain string `pg:",pk,notnull,unique"`
+ Domain string `bun:",pk,notnull,unique"`
// Title of this instance as it would like to be displayed.
Title string
// base URI of this instance eg https://example.org
- URI string `pg:",notnull,unique"`
+ URI string `bun:",notnull,unique"`
// When was this instance created in the db?
- CreatedAt time.Time `pg:"type:timestamp,notnull,default:now()"`
+ CreatedAt time.Time `bun:",nullzero,notnull,default:current_timestamp"`
// When was this instance last updated in the db?
- UpdatedAt time.Time `pg:"type:timestamp,notnull,default:now()"`
+ UpdatedAt time.Time `bun:",nullzero,notnull,default:current_timestamp"`
// When was this instance suspended, if at all?
- SuspendedAt time.Time
+ SuspendedAt time.Time `bun:",nullzero"`
// ID of any existing domain block for this instance in the database
- DomainBlockID string `pg:"type:CHAR(26)"`
- DomainBlock *DomainBlock `pg:"rel:has-one"`
+ DomainBlockID string `bun:"type:CHAR(26),nullzero"`
+ DomainBlock *DomainBlock `bun:"rel:belongs-to"`
// Short description of this instance
ShortDescription string
// Longer description of this instance
@@ -32,10 +32,10 @@ type Instance struct {
// Username of the contact account for this instance
ContactAccountUsername string
// Contact account ID in the database for this instance
- ContactAccountID string `pg:"type:CHAR(26)"`
- ContactAccount *Account `pg:"rel:has-one"`
+ ContactAccountID string `bun:"type:CHAR(26),nullzero"`
+ ContactAccount *Account `bun:"rel:belongs-to"`
// Reputation score of this instance
- Reputation int64 `pg:",notnull,default:0"`
+ Reputation int64 `bun:",notnull,default:0"`
// Version of the software used on this instance
Version string
}