Migrate ip_address field to ip_addresses

The automatic migration did not pick up this change and it breaks
current setups as it only adds a new field which is empty.

This means that clients who dont request a new IP will not have any IP
at all.
This commit is contained in:
Kristoffer Dalby 2022-01-30 13:06:49 +00:00
parent 5b5ecd52e1
commit e9adfcd678

6
db.go
View File

@ -30,18 +30,24 @@ func (h *Headscale) initDB() error {
if h.dbType == Postgres {
db.Exec("create extension if not exists \"uuid-ossp\";")
}
_ = db.Migrator().RenameColumn(&Machine{}, "ip_address", "ip_addresses")
err = db.AutoMigrate(&Machine{})
if err != nil {
return err
}
err = db.AutoMigrate(&KV{})
if err != nil {
return err
}
err = db.AutoMigrate(&Namespace{})
if err != nil {
return err
}
err = db.AutoMigrate(&PreAuthKey{})
if err != nil {
return err