mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
fix: db field name (#21968)
> No issue, just a small fix # Checklist for submitter If some of the following don't apply, delete the relevant line. <!-- Note that API documentation changes are now addressed by the product design team. --> - [x] Manual QA for all new/changed functionality
This commit is contained in:
parent
b30e765554
commit
7b3cbdf4d7
1 changed files with 1 additions and 1 deletions
|
|
@ -5,7 +5,7 @@ package fleet
|
|||
type MaintainedApp struct {
|
||||
ID uint `json:"id" db:"id"`
|
||||
Name string `json:"name" db:"name"`
|
||||
Token string `json:"-" db:"name"`
|
||||
Token string `json:"-" db:"token"`
|
||||
Version string `json:"version" db:"version"`
|
||||
Platform AppleDevicePlatform `json:"platform" db:"platform"`
|
||||
InstallerURL string `json:"-" db:"installer_url"`
|
||||
|
|
|
|||
Loading…
Reference in a new issue