todoappapi / 001_add_user_id_index.sql
GrowWithTalha's picture
feat: sync backend changes from SDDRI-Hackathon-2
84c328d
raw
history blame contribute delete
125 Bytes
-- Add index on tasks.user_id for improved query performance
CREATE INDEX IF NOT EXISTS idx_tasks_user_id ON tasks(user_id);