繰り返し課題スケジューラーとGenerationLeadDaysフィールドを追加

This commit is contained in:
2026-04-22 23:45:01 +09:00
parent 21843a7b86
commit 2f061f8bcd
2 changed files with 23 additions and 6 deletions

View File

@@ -45,6 +45,8 @@ type RecurringAssignment struct {
GeneratedCount int `gorm:"default:0" json:"generated_count"`
EditBehavior string `gorm:"not null;default:this_only" json:"edit_behavior"`
GenerationLeadDays int `gorm:"default:0" json:"generation_lead_days"`
GenerationLeadTime string `gorm:"default:''" json:"generation_lead_time"`
ReminderEnabled bool `gorm:"default:false" json:"reminder_enabled"`
ReminderOffset *int `json:"reminder_offset,omitempty"`
UrgentReminderEnabled bool `gorm:"default:true" json:"urgent_reminder_enabled"`