@campus-labs/prisma-client 0.19.0 → 0.19.2
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 +3 -0
- package/.claude/settings.local.json +0 -11
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -132,6 +132,7 @@ model initiatives {
|
|
|
132
132
|
attendance_mode String? @db.VarChar(20)
|
|
133
133
|
volunteers_allowed Boolean @default(false)
|
|
134
134
|
project_id Int?
|
|
135
|
+
requirements String? @db.VarChar(500)
|
|
135
136
|
badges badges[]
|
|
136
137
|
badges_instances badges_instances[]
|
|
137
138
|
initiative_invitations initiative_invitations[]
|
|
@@ -196,6 +197,8 @@ model programs {
|
|
|
196
197
|
id Int @id @default(autoincrement())
|
|
197
198
|
title String @db.VarChar(100)
|
|
198
199
|
description String @db.VarChar(1000)
|
|
200
|
+
objectives String? @db.VarChar(500)
|
|
201
|
+
vision String? @db.VarChar(500)
|
|
199
202
|
img Json
|
|
200
203
|
is_draft Boolean @default(true)
|
|
201
204
|
is_approved Boolean @default(false)
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"permissions": {
|
|
3
|
-
"allow": [
|
|
4
|
-
"Bash(ls -la /Users/nunomatos/Desktop/SerMais/prisma/.env*)",
|
|
5
|
-
"Bash(git check-ignore -v /Users/nunomatos/Desktop/SerMais/prisma/.env.staging)",
|
|
6
|
-
"Bash(git check-ignore -v .env.staging)",
|
|
7
|
-
"Bash(ls -la /Users/nunomatos/Desktop/SerMais/prisma/*.ts /Users/nunomatos/Desktop/SerMais/prisma/*.js)",
|
|
8
|
-
"Bash(grep -r \"\\\\.password\" /Users/nunomatos/Desktop/SerMais --include=\"*.ts\" --include=\"*.js\" ! -path \"*/node_modules/*\" ! -path \"*/.next/*\" ! -path \"*/dist/*\")"
|
|
9
|
-
]
|
|
10
|
-
}
|
|
11
|
-
}
|