Backend: - [W1] Add server_default=func.now() on created_at/updated_at - [W2] Add index on reset_at column (migration 016) - [W7] Document weekly reset edge case in code comment Frontend: - [W4] Extract shared isTodoOverdue() utility in lib/utils.ts, used consistently across TodosPage, TodoItem, TodoList - [W5] Delete requires double-click confirmation (button turns red for 2s, second click confirms) with optimistic removal - [W6] Stat cards now reflect filtered counts, not global - [S3] Optimistic delete with rollback on error - [S4] Add "None" to priority segmented filter - [S7] Sort todos within groups by due date ascending Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
29 lines
1.6 KiB
Python
29 lines
1.6 KiB
Python
from sqlalchemy import String, Text, Boolean, Date, Time, Integer, ForeignKey, func
|
|
from sqlalchemy.orm import Mapped, mapped_column, relationship
|
|
from datetime import datetime, date, time
|
|
from typing import Optional
|
|
from app.database import Base
|
|
|
|
|
|
class Todo(Base):
|
|
__tablename__ = "todos"
|
|
|
|
id: Mapped[int] = mapped_column(primary_key=True, index=True)
|
|
title: Mapped[str] = mapped_column(String(255), nullable=False)
|
|
description: Mapped[Optional[str]] = mapped_column(Text, nullable=True)
|
|
priority: Mapped[str] = mapped_column(String(20), default="medium")
|
|
due_date: Mapped[Optional[date]] = mapped_column(Date, nullable=True)
|
|
due_time: Mapped[Optional[time]] = mapped_column(Time, nullable=True)
|
|
completed: Mapped[bool] = mapped_column(Boolean, default=False)
|
|
completed_at: Mapped[Optional[datetime]] = mapped_column(nullable=True)
|
|
category: Mapped[Optional[str]] = mapped_column(String(100), nullable=True)
|
|
recurrence_rule: Mapped[Optional[str]] = mapped_column(String(255), nullable=True)
|
|
reset_at: Mapped[Optional[datetime]] = mapped_column(nullable=True, index=True)
|
|
next_due_date: Mapped[Optional[date]] = mapped_column(Date, nullable=True)
|
|
project_id: Mapped[Optional[int]] = mapped_column(Integer, ForeignKey("projects.id"), nullable=True)
|
|
created_at: Mapped[datetime] = mapped_column(default=func.now(), server_default=func.now())
|
|
updated_at: Mapped[datetime] = mapped_column(default=func.now(), onupdate=func.now(), server_default=func.now())
|
|
|
|
# Relationships
|
|
project: Mapped[Optional["Project"]] = relationship(back_populates="todos")
|