nquest/pkg/models/task.go

32 lines
509 B
Go
Raw Normal View History

2023-11-01 23:21:12 +03:00
package models
import "github.com/google/uuid"
2023-11-01 23:21:12 +03:00
type Task struct {
Model
Title string
Text string
MaxTime int
GameID uuid.UUID
2023-11-01 23:21:12 +03:00
Solutions []*Solution `gorm:"constraint:OnUpdate:CASCADE,OnDelete:CASCADE;"`
Codes []*Code `gorm:"constraint:OnUpdate:CASCADE,OnDelete:CASCADE;"`
TaskOrder uint
2023-11-01 23:21:12 +03:00
}
type Solution struct {
Model
TaskID uuid.UUID
2023-11-01 23:21:12 +03:00
After int
Text string
}
type Code struct {
Model
TaskID uuid.UUID
2023-11-01 23:21:12 +03:00
Code string `gorm:"index"`
Description string
}