test: fix macOS path assertion and wallet address unique index

This commit is contained in:
sojibimran
2026-04-04 00:57:52 +08:00
parent 5a607aa347
commit d7fa90112d
3 changed files with 24 additions and 5 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ const (
type WalletAddress struct {
Network string `gorm:"column:network;uniqueIndex:wallet_address_network_address_uindex" json:"network"`
Address string `gorm:"column:address;uniqueIndex:wallet_address_address_uindex" json:"address"`
Address string `gorm:"column:address;uniqueIndex:wallet_address_network_address_uindex" json:"address"`
Status int64 `gorm:"column:status;default:1" json:"status"`
BaseModel
}