17 lines
379 B
Go
17 lines
379 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type SenlinAgentAIKey struct {
|
|
ID uint `gorm:"primaryKey"`
|
|
UserID uint `gorm:"uniqueIndex;not null"`
|
|
Provider string `gorm:"not null"`
|
|
EncryptedAPIKey string `gorm:"not null"`
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
}
|
|
|
|
func (SenlinAgentAIKey) TableName() string {
|
|
return "senlin_agent_ai_keys"
|
|
}
|