Andrea Fazzi 6 anni fa
parent
commit
2a08130da1
1 ha cambiato i file con 4 aggiunte e 0 eliminazioni
  1. 4 0
      orm/student.go

+ 4 - 0
orm/student.go

@@ -12,6 +12,10 @@ type Student struct {
 	gorm.Model
 	Credential
 
+	Handicap bool
+	DSA      bool
+	BES      bool
+
 	ClassID uint `schema:"class_id"`
 
 	Class      *Class