Added description field to Test model

This commit is contained in:
Gregory Ballantine 2024-05-29 08:58:30 -04:00
parent 6cb2ac0263
commit 86bf4d37f0

View File

@ -7,6 +7,7 @@ import (
type Test struct { type Test struct {
gorm.Model gorm.Model
Name string Name string
Description string
// belongs to hardware // belongs to hardware
HardwareID int HardwareID int