diff --git a/data/attendance.go b/data/attendance.go index db92551..b077431 100644 --- a/data/attendance.go +++ b/data/attendance.go @@ -20,7 +20,7 @@ type Attendance struct { AttendanceId uuid.UUID `json:"attendance_id" gorm:"type:uuid;uniqueIndex;not null"` EventId uuid.UUID `json:"event_id" gorm:"type:uuid;uniqueIndex:unique_event_user;not null"` UserId uuid.UUID `json:"user_id" gorm:"type:uuid;uniqueIndex:unique_event_user;not null"` - Role string `json"role" gorm:"not null"` + Role string `json:"role" gorm:"not null"` CheckinAt time.Time `json:"checkin_at"` }