mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-20 11:41:14 +10:00
14 lines
327 B
Plaintext
14 lines
327 B
Plaintext
model News {
|
|
id String @id @default(uuid())
|
|
title String
|
|
content String @db.Text
|
|
excerpt String
|
|
tags String[]
|
|
image String?
|
|
publishedAt DateTime @default(now())
|
|
author User @relation(fields: [authorId], references: [id])
|
|
authorId String
|
|
|
|
@@map("news")
|
|
}
|