You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Resources Figma Supabase (Credentials pinned in Slack)
Description
Implement patient journaling, including the addition of a database table to store journal entries, and corresponding frontend funcitonality.
Create a database table journals to store patients' journal entries. Don't worry about RLS for now.
Table name: journals
Columns:
id - uuid (non-nullable, autogenerated)
patient_id - user_id (non-nullable, foreign key to patients table)
clinic_id - clinic_id (non-nullable, foreign key to clinics table)
body_parts - text (array)
description - text (non-nullable)
media - text (this will be a link or may otherwise change later)
MERGED WITH DASHBOARD SCREENS DELIVERABLE
Resources
Figma
Supabase (Credentials pinned in Slack)
Description
Implement patient journaling, including the addition of a database table to store journal entries, and corresponding frontend funcitonality.
journals
to store patients' journal entries. Don't worry about RLS for now.journals
id
- uuid (non-nullable, autogenerated)patient_id
- user_id (non-nullable, foreign key topatients
table)clinic_id
- clinic_id (non-nullable, foreign key toclinics
table)body_parts
- text (array)description
- text (non-nullable)media
- text (this will be a link or may otherwise change later)timestamp
- TIMESTAMPTZ (non-nullable, autogenerated)The text was updated successfully, but these errors were encountered: