Holiday
Période de vacances scolaires.
Source :
src/db/schema/holidays.schema.ts,src/services/dto/holidays.dto.ts.
Schéma
| Champ | Type | Contraintes | Description |
|---|---|---|---|
id | serial | PK | Auto-incrément |
label | text | NOT NULL | Nom affiché |
start | date | NOT NULL | Date de début (YYYY-MM-DD) |
end | date | NOT NULL | Date de fin (YYYY-MM-DD) |
DTO
CreateHolidayDTO
{
label: string;
start: string; // yyyy-mm-dd
end: string; // yyyy-mm-dd
}UpdateHolidayDTO
{
label?: string;
start?: string;
end?: string;
}