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:
Jahziel Villasana-Espinoza 2024-09-10 18:21:53 -04:00 committed by GitHub
parent b30e765554
commit 7b3cbdf4d7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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"`