-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🔧 Add title
column to DocVersion
model in Prisma schema and corresponding SQL migrations
#949
Conversation
…sponding SQL migrations
The latest updates on your projects. Learn more about Vercel for Git ↗︎
4 Skipped Deployments
|
Updates to Preview Branch (add-title-to-docs-version) ↗︎
Tasks are run on every commit but only new migration files are pushed.
View logs for this Workflow Run ↗︎. |
The schema changes provided indicate an important modification to the
In conclusion, while the addition of the Migration URL: https://liam-erd-web.vercel.app/app/projects/6/migrations/68 |
The proposed schema changes introduce a new
In summary, while the addition of the Migration URL: https://liam-app-git-staging-route-06-core.vercel.app/app/projects/4/migrations/17 |
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨Explore these optional code suggestions:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Issue
Why is this change needed?
Doc update retained content, but not title.
What would you like reviewers to focus on?
Testing Verification
What was done
🤖 Generated by PR Agent at 5c88216
title
column to theDocVersion
model in the Prisma schema.title
column.DocVersion
table in Supabase.Detailed Changes
migration.sql
Add `title` column to `DocVersion` table
frontend/packages/db/prisma/migrations/20250321012007_add_title_to_doc_version/migration.sql
title
column to theDocVersion
table.value.
schema.prisma
Update Prisma schema with `title` field
frontend/packages/db/prisma/schema.prisma
title
field to theDocVersion
model.title
field is of typeString
.20250321012022_add_title_to_doc_version.sql
Add `title` column and update permissions in Supabase
frontend/packages/db/supabase/migrations/20250321012022_add_title_to_doc_version.sql
title
column to theDocVersion
table.Doc
andDocVersion
tables.Additional Notes