From e1ba8a765637044716a8b844201d5f231566c240 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Sun, 24 Dec 2023 08:18:44 -0500 Subject: [PATCH] refactor: remove slug column --- prisma/schema.prisma | 1 - 1 file changed, 1 deletion(-) diff --git a/prisma/schema.prisma b/prisma/schema.prisma index af66e7c..773345d 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -11,7 +11,6 @@ model Article { @@map("articles") id Int @id @default(autoincrement()) title String - slug String cid String @unique url String createdAt DateTime @default(now())