mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-26 08:53:05 +00:00
fix postgres migration (#1802)
This commit is contained in:
parent
7a920ee701
commit
c9966ba6c2
1 changed files with 8 additions and 1 deletions
|
@ -317,7 +317,14 @@ func NewHeadscaleDatabase(
|
|||
// no longer used.
|
||||
ID: "202402151347",
|
||||
Migrate: func(tx *gorm.DB) error {
|
||||
return tx.Migrator().DropColumn(&types.Node{}, "last_successful_update")
|
||||
err := tx.Migrator().DropColumn(&types.Node{}, "last_successful_update")
|
||||
if err != nil && strings.Contains(err.Error(), `of relation "nodes" does not exist`) {
|
||||
return nil
|
||||
} else {
|
||||
return err
|
||||
}
|
||||
|
||||
return err
|
||||
},
|
||||
Rollback: func(tx *gorm.DB) error {
|
||||
return nil
|
||||
|
|
Loading…
Reference in a new issue