From fc9f433e66cdb616ff0d1975149eca8bc29f3e30 Mon Sep 17 00:00:00 2001 From: Alexxxxxx <118710506+alexgao001@users.noreply.github.com> Date: Fri, 5 Jul 2024 15:24:55 +0800 Subject: [PATCH] fix: add comment (#9) --- db/blob.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/blob.go b/db/blob.go index a588e50..e2caee4 100644 --- a/db/blob.go +++ b/db/blob.go @@ -8,7 +8,7 @@ type Blob struct { VersionedHash string `gorm:"NOT NULL"` Slot uint64 `gorm:"NOT NULL;index:idx_blob_slot_index"` Idx int `gorm:"NOT NULL;index:idx_blob_slot_idx"` - TxIndex int + TxIndex int `gorm:"comment:txIndex"` KzgCommitment string `gorm:"NOT NULL"` KzgProof string `gorm:"NOT NULL"` CommitmentInclusionProof string `gorm:"NOT NULL"`