Files
NextEdu/drizzle/0019_attendance_warning_thresholds.sql
SpecialX 365c36d97b feat(db): add migrations for RBAC, diagnostic, messaging, attendance, leave, invitation codes
- 0011: RBAC role flags and seed data

- 0012: diagnostic grade_id

- 0013: message recall

- 0014: message templates

- 0015: group messages and message reports/blocks

- 0016: invitation codes

- 0017: draft device sync

- 0018: attendance status reason

- 0019: attendance warning thresholds

- 0020: leave requests

- 0021: attendance period
2026-07-03 10:23:24 +08:00

7 lines
328 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
-- L-3出勤率阈值预警
-- 新增 attendance_rate_threshold出勤率阈值默认 90%
-- 新增 consecutive_absence_threshold连续缺勤阈值默认 3 次)
ALTER TABLE `attendance_rules`
ADD COLUMN `attendance_rate_threshold` int DEFAULT 90,
ADD COLUMN `consecutive_absence_threshold` int DEFAULT 3;