mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 17:08:53 +00:00
fix: migration order
This commit is contained in:
parent
0bf331786e
commit
3bc1d50456
1 changed files with 3 additions and 3 deletions
|
|
@ -6,10 +6,10 @@ import (
|
|||
)
|
||||
|
||||
func init() {
|
||||
MigrationClient.AddMigration(Up_20241009141855, Down_20241009141855)
|
||||
MigrationClient.AddMigration(Up_20241025141855, Down_20241025141855)
|
||||
}
|
||||
|
||||
func Up_20241009141855(tx *sql.Tx) error {
|
||||
func Up_20241025141855(tx *sql.Tx) error {
|
||||
_, err := tx.Exec(`
|
||||
CREATE TABLE host_mdm_apple_awaiting_configuration (
|
||||
host_uuid VARCHAR(255) NOT NULL PRIMARY KEY,
|
||||
|
|
@ -22,6 +22,6 @@ CREATE TABLE host_mdm_apple_awaiting_configuration (
|
|||
return nil
|
||||
}
|
||||
|
||||
func Down_20241009141855(tx *sql.Tx) error {
|
||||
func Down_20241025141855(tx *sql.Tx) error {
|
||||
return nil
|
||||
}
|
||||
Loading…
Reference in a new issue