refactor: add cid to article

This commit is contained in:
Derrick Hammer 2023-12-11 20:02:52 -05:00
parent 47bdaf9b88
commit f94813d4c2
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,5 @@
generator client {
provider = "prisma-client-js"
provider = "prisma-client-js"
}
datasource db {
@ -11,6 +11,7 @@ model Article {
id Int @id @default(autoincrement())
title String
slug String
cid String
url String
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt