chore: update post model

This commit is contained in:
Andrea
2023-03-02 08:19:18 +01:00
parent 5d870a2e4a
commit bd16bc4fcf
2 changed files with 6 additions and 1 deletions

View File

@@ -15,6 +15,7 @@ model Post {
title String
description String?
path String
isPublic Boolean @default(false)
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
}