feat: add news media api

This commit is contained in:
ARJUN S THAMPI
2026-03-25 17:59:36 +05:30
parent f35eab14e6
commit 24a8bc4113
5 changed files with 217 additions and 0 deletions
+16
View File
@@ -185,4 +185,20 @@ model EmailConfig {
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
}
model NewsMedia {
id Int @id @default(autoincrement())
headline String
content String?
firstPara String?
secondPara String?
author String?
date DateTime?
isActive Boolean @default(true)
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
}