fix: register LoginSession model
This commit is contained in:
parent
7257b5d597
commit
48164ec320
2
db/db.go
2
db/db.go
|
@ -53,7 +53,7 @@ func Init() {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Automatically migrate the database schema based on the model definitions.
|
// Automatically migrate the database schema based on the model definitions.
|
||||||
err = db.Migrator().AutoMigrate(&model.Account{}, &model.Key{}, &model.KeyChallenge{})
|
err = db.Migrator().AutoMigrate(&model.Account{}, &model.Key{}, &model.KeyChallenge{}, &model.LoginSession{})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(fmt.Errorf("Database setup failed database type: %s \n", err))
|
panic(fmt.Errorf("Database setup failed database type: %s \n", err))
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue