mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 01:18:42 +00:00
Fix migration function name (#27415)
This commit is contained in:
parent
b9ae1205c2
commit
0d7b8c206c
1 changed files with 3 additions and 3 deletions
|
|
@ -8,10 +8,10 @@ import (
|
|||
)
|
||||
|
||||
func init() {
|
||||
MigrationClient.AddMigration(Up_20250317201526, Down_20250317201526)
|
||||
MigrationClient.AddMigration(Up_20250320200000, Down_20250320200000)
|
||||
}
|
||||
|
||||
func Up_20250317201526(tx *sql.Tx) error {
|
||||
func Up_20250320200000(tx *sql.Tx) error {
|
||||
// Clean up Fleet Library App associated scripts before we drop the columns on the table
|
||||
_, err := tx.Exec(`DELETE FROM
|
||||
script_contents
|
||||
|
|
@ -112,6 +112,6 @@ ALTER TABLE fleet_maintained_apps
|
|||
return nil
|
||||
}
|
||||
|
||||
func Down_20250317201526(tx *sql.Tx) error {
|
||||
func Down_20250320200000(tx *sql.Tx) error {
|
||||
return nil
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue