feat(core): add calendar time fields to task schema #99
No reviewers
Labels
No labels
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
track:api
track:auto
track:core
track:deploy
track:infra
track:ui
v0.1.0
v0.1.1
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
barrettruth/delta!99
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "feat/calendar-schema-v2"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
Tasks only have a
duedate — no way to represent timed events with start/end, timezones, or all-day flags for calendar views.Solution
Add
startAt,endAt,allDay,timezonecolumns to tasks table.duestays as the deadline for urgency scoring — separate from the event window. Validation ensuresendAt > startAt, valid IANA timezone, booleanallDay. Recurrence shiftsstartAt/endAtby the same delta asdue. CLI types updated. Foundation for #91 and #62.