Hello people, I'm having this issue (using prisma ...
# orm-help
g
Hello people, I'm having this issue (using prisma for the first time) My model is as such:
Copy code
model Reminder {
  userId String 
  id String @id @default(uuid()) @unique
  content String
  endsAt DateTime
}
Error: ⚠️ We found changes that cannot be executed: • Step 0 The required column
id
was added to the
Reminder
table with a prisma-level default value. There are 1 rows in this table, it is not possible to execute this step. Please add this column as optional, then populate it before making it required. You can use prisma migrate dev --create-only to create the migration file, and manually modify it to address the underlying issue(s). Then run prisma migrate dev to apply it and verify it works.
1
v
👋 Hello @Gaurish, did this answer help you or are you still have issues? Let us know!
1
g
Hi, Yes it did thanks
💯 1
v
Fantastic, thank you for confirming!