@campus-labs/prisma-client 0.4.4 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/prisma/schema.prisma +2 -2
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -100,7 +100,7 @@ model initiatives {
|
|
|
100
100
|
id Int @id @default(autoincrement())
|
|
101
101
|
title String @db.VarChar(100)
|
|
102
102
|
description String @db.VarChar(3000)
|
|
103
|
-
img Json
|
|
103
|
+
img Json[]
|
|
104
104
|
inscription_deadline DateTime @db.Timestamp(6)
|
|
105
105
|
start_date DateTime @db.Timestamp(6)
|
|
106
106
|
end_date DateTime @db.Timestamp(6)
|
|
@@ -236,7 +236,7 @@ model soft_skills {
|
|
|
236
236
|
img_achieved Json
|
|
237
237
|
img_inactive Json
|
|
238
238
|
description String @db.VarChar(1000)
|
|
239
|
-
points Int
|
|
239
|
+
points Int?
|
|
240
240
|
created_at DateTime @default(now()) @db.Timestamp(6)
|
|
241
241
|
updated_at DateTime @default(now()) @db.Timestamp(6)
|
|
242
242
|
deleted_at DateTime? @db.Timestamp(6)
|