UI & API Menu Inovasi, SubMenu : Kolaborasi Inovasi & Info Teknologi
This commit is contained in:
@@ -94,6 +94,8 @@ model FileStorage {
|
||||
DesaDigital DesaDigital[]
|
||||
|
||||
KolaborasiInovasi KolaborasiInovasi[]
|
||||
|
||||
InfoTekno InfoTekno[]
|
||||
}
|
||||
|
||||
//========================================= MENU PPID ========================================= //
|
||||
@@ -1372,3 +1374,16 @@ model KolaborasiInovasi {
|
||||
deletedAt DateTime @default(now())
|
||||
isActive Boolean @default(true)
|
||||
}
|
||||
|
||||
// ========================================= INFO TEKHNOLOGI TEPAT GUNA ========================================= //
|
||||
model InfoTekno {
|
||||
id String @id @default(cuid())
|
||||
name String
|
||||
deskripsi String @db.Text
|
||||
image FileStorage @relation(fields: [imageId], references: [id])
|
||||
imageId String
|
||||
createdAt DateTime @default(now())
|
||||
updatedAt DateTime @updatedAt
|
||||
deletedAt DateTime @default(now())
|
||||
isActive Boolean @default(true)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user