-
Notifications
You must be signed in to change notification settings - Fork 1
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
Adding the migration to include the project. #15
Conversation
maxyuri13
commented
Jan 26, 2024
- Added migrations for adding the project.
- Established the connection between adding the project and the user.
prisma/schema.prisma
Outdated
} | ||
|
||
model AddProject { |
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.
Wouldn't it be projects?
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.
Done
prisma/schema.prisma
Outdated
@@ -15,4 +15,19 @@ model User { | |||
password_hash String | |||
created_at DateTime @default(now()) | |||
updated_at DateTime @updatedAt | |||
|
|||
addProjects AddProject[] |
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.
Wouldn't it be projects?
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.
Done.
"id" TEXT NOT NULL, | ||
"name" TEXT NOT NULL, | ||
"surname" TEXT NOT NULL, | ||
"email" TEXT NOT NULL, |
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.
Why is that here? That is already done in the first migration that you delete!