mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
Fix typo in "clean up duplicate Zoom" migration query (#27420)
This commit is contained in:
parent
0d7b8c206c
commit
1f42204002
1 changed files with 1 additions and 1 deletions
|
|
@ -98,7 +98,7 @@ ALTER TABLE fleet_maintained_apps
|
|||
|
||||
// clear old Zoom FMA before swapping in new one
|
||||
if len(slugs) > 1 || (len(slugs) == 1 && slugs[0] == "zoom/darwin") {
|
||||
_, err = tx.Exec(`DELETE FROM fleet_maintaned_apps WHERE slug = 'zoom/darwin'`)
|
||||
_, err = tx.Exec(`DELETE FROM fleet_maintained_apps WHERE slug = 'zoom/darwin'`)
|
||||
if err != nil {
|
||||
return fmt.Errorf("failed to remove duplicate Zoom FMA: %w", err)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue