- bill_notes table (migration 0014): user_id, bill_id, content, pinned,
created_at, updated_at; unique constraint (user_id, bill_id)
- BillNote SQLAlchemy model with back-refs on User and Bill
- GET/PUT/DELETE /api/notes/{bill_id} — auth-required, one note per (user, bill)
- NotesPanel component: collapsible, auto-resize textarea, pin toggle,
save + delete; shows last-saved date and pin indicator in collapsed header
- Pinned notes render above BriefPanel; unpinned render below DraftLetterPanel
- Guests see nothing (token guard in component + query disabled)
Co-Authored-By: Jack Levy
23 lines
1.0 KiB
Python
23 lines
1.0 KiB
Python
from sqlalchemy import Boolean, Column, DateTime, Integer, String
|
|
from sqlalchemy.dialects.postgresql import JSONB
|
|
from sqlalchemy.orm import relationship
|
|
from sqlalchemy.sql import func
|
|
|
|
from app.database import Base
|
|
|
|
|
|
class User(Base):
|
|
__tablename__ = "users"
|
|
|
|
id = Column(Integer, primary_key=True, autoincrement=True)
|
|
email = Column(String, unique=True, nullable=False, index=True)
|
|
hashed_password = Column(String, nullable=False)
|
|
is_admin = Column(Boolean, nullable=False, default=False)
|
|
notification_prefs = Column(JSONB, nullable=False, default=dict)
|
|
rss_token = Column(String, unique=True, nullable=True, index=True)
|
|
created_at = Column(DateTime(timezone=True), server_default=func.now())
|
|
|
|
follows = relationship("Follow", back_populates="user", cascade="all, delete-orphan")
|
|
notification_events = relationship("NotificationEvent", back_populates="user", cascade="all, delete-orphan")
|
|
bill_notes = relationship("BillNote", back_populates="user", cascade="all, delete-orphan")
|