Drop shared node table

This commit is contained in:
Kristoffer Dalby 2022-02-21 22:52:55 +00:00
parent 9399754489
commit 1e8f4dbdff

5
db.go
View file

@ -53,10 +53,7 @@ func (h *Headscale) initDB() error {
return err
}
err = db.AutoMigrate(&SharedMachine{})
if err != nil {
return err
}
_ = db.Migrator().DropTable("shared_machines")
err = db.AutoMigrate(&APIKey{})
if err != nil {