| 77 | } |
| 78 | |
| 79 | type Store struct { |
| 80 | StoreKey string `gorm:"primaryKey;type:varchar(255)"` |
| 81 | StoreValue json.RawMessage `gorm:"type:json;serializer:json"` |
| 82 | CreatedAt time.Time `json:"createdAt" mapstructure:"createdAt"` |
| 83 | UpdatedAt time.Time `json:"updatedAt" mapstructure:"updatedAt"` |
| 84 | } |
| 85 | |
| 86 | func (Store) TableName() string { |
| 87 | return "_devlake_store" |
nothing calls this directly
no outgoing calls
no test coverage detected