Added result model; added form to submit results

This commit is contained in:
2025-07-14 13:53:50 -04:00
parent 346b9e3911
commit b93c8a5319
3 changed files with 59 additions and 1 deletions

View File

@ -21,6 +21,6 @@ func Open() {
}
// Migrate the schema
DB.AutoMigrate(&Test{}, &Hardware{}, &Benchmark{})
DB.AutoMigrate(&Test{}, &Hardware{}, &Benchmark{}, &Result{})
log.Println("Database migrations complete.")
}