Next.js Discord

Discord Forum

How to update Prisma @unique

Unanswered
Scarlet Ibis posted this in #help-forum
Open in Discord
Scarlet IbisOP
Hello,
So I started a new NextJS project.
I did this:
model Post {
  id        String   @id @default(cuid())
  title     String
  slug      String
  content   String
  updatedAt DateTime @updatedAt
  createdAt DateTime @default(now())
}

Then I added to slug @unique
But when I tried to do
const post = await prisma.post.findUnique({
        where: {
            slug
        }
    });

It gave me an error : Invalid prisma.user.findUnique() invocation:

How do I apply the new @unique? the npx prisma db push did not work

4 Replies

Transvaal lion
Whenever you modify your prisma schema, you'll have to:
- first, migrate your db via npx prisma migrate --name <migration_name>;
- once done, regenerate the prisma client via npm prisma generate;
- now you can continue your work.
Also, I found the issue, I had to do again npm run dev.
The prisma migrate would also fix that issue?