From 51213c1a6ce2fde7bed1a09640c3b41088962ff9 Mon Sep 17 00:00:00 2001 From: tbphp Date: Sat, 12 Jul 2025 11:47:31 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=88=A0=E9=99=A4key=E9=94=99=E8=AF=AF?= =?UTF-8?q?=E5=8E=9F=E5=9B=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/models/types.go | 1 - 1 file changed, 1 deletion(-) diff --git a/internal/models/types.go b/internal/models/types.go index 1571ceb..2816876 100644 --- a/internal/models/types.go +++ b/internal/models/types.go @@ -64,7 +64,6 @@ type APIKey struct { Status string `gorm:"type:varchar(50);not null;default:'active'" json:"status"` RequestCount int64 `gorm:"not null;default:0" json:"request_count"` FailureCount int64 `gorm:"not null;default:0" json:"failure_count"` - ErrorReason string `gorm:"type:text" json:"error_reason"` LastUsedAt *time.Time `json:"last_used_at"` CreatedAt time.Time `json:"created_at"` UpdatedAt time.Time `json:"updated_at"`