1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-19 05:19:39 +02:00
portainer/api/bolt/migrator/migrate_dbversion9.go

21 lines
417 B
Go
Raw Normal View History

package migrator
2018-05-06 09:15:57 +02:00
import "github.com/portainer/portainer/api"
2018-05-06 09:15:57 +02:00
func (m *Migrator) updateEndpointsToVersion10() error {
legacyEndpoints, err := m.endpointService.Endpoints()
2018-05-06 09:15:57 +02:00
if err != nil {
return err
}
for _, endpoint := range legacyEndpoints {
endpoint.Type = portainer.DockerEnvironment
err = m.endpointService.UpdateEndpoint(endpoint.ID, &endpoint)
2018-05-06 09:15:57 +02:00
if err != nil {
return err
}
}
return nil
}