What's the correct way to fix this error?
I deleted my products table with almost 3 million records using
This happened on my local development database, and I do have a backup. However, I'm looking for a solution to fix this without relying on backups.
DROP TABLE products CASCADE;. Then, when I tried to recreate the table with npx prisma migrate dev, Prisma raised these errors:This happened on my local development database, and I do have a backup. However, I'm looking for a solution to fix this without relying on backups.