here's my prisma model: model Video { id ...
# orm-help
k
here's my prisma model: model Video { id Int @id @default(autoincrement()) videoUrl String videoAnalytics VideoAnalytics? } model VideoAnalytics { id Int @id @default(autoincrement()) name String createdAt DateTime @default(now()) updatedAt DateTime @default(now()) ImpressionData Int impression Video @relation(fields: [impressionId], references: [id]) impressionId Int @unique }
👀 1
✅ 1
r
Hi @Kashyup 👋 Are you clicking on the save changes button when you insert the record using prisma studio?
k
Hi @Raphael Etim Thank you
I just refreshed the page and now its working
💯 1
v
Fantastic, thank you for letting us know that this is now solved!