this repo has no description

fix: missing ch tag

Changed files
+7 -7
models
+7 -7
models/record.go
···
import "time"
type Record struct {
-
Did string `ch:"did"`
-
Rkey string `ch:"rkey"`
-
Collection string `ch:"collection"`
-
Cid string `ch:"cid"`
-
Seq string `ch:"seq"`
-
Raw []byte `ch:"raw"`
-
CreatedAt time.Time
+
Did string `ch:"did"`
+
Rkey string `ch:"rkey"`
+
Collection string `ch:"collection"`
+
Cid string `ch:"cid"`
+
Seq string `ch:"seq"`
+
Raw []byte `ch:"raw"`
+
CreatedAt time.Time `ch:"created_at"`
}