this repo has no description

fix: column naming typos

Changed files
+4 -4
models
+1 -1
models/interaction.go
···
import "time"
type Interaction struct {
-
Uri string `ch:"like"`
+
Uri string `ch:"uri"`
Did string `ch:"did"`
Rkey string `ch:"rkey"`
Kind string `ch:"kind"`
+3 -3
models/post.go
···
Rkey string `ch:"rkey"`
CreatedAt time.Time `ch:"created_at"`
IndexedAt time.Time `ch:"indexed_at"`
-
RootUri string `ch:"root"`
+
RootUri string `ch:"root_uri"`
RootDid string `ch:"root_did"`
-
ParentUri string `ch:"reply"`
-
ParentDid string `ch:"reply_did"`
+
ParentUri string `ch:"parent_uri"`
+
ParentDid string `ch:"parent_did"`
QuoteUri string `ch:"quote_uri"`
QuoteDid string `ch:"quote_did"`
}