@campus-labs/prisma-client 0.19.0 → 0.19.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 -0
- package/.claude/settings.local.json +0 -11
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -196,6 +196,8 @@ model programs {
|
|
|
196
196
|
id Int @id @default(autoincrement())
|
|
197
197
|
title String @db.VarChar(100)
|
|
198
198
|
description String @db.VarChar(1000)
|
|
199
|
+
objectives String? @db.VarChar(500)
|
|
200
|
+
vision String? @db.VarChar(500)
|
|
199
201
|
img Json
|
|
200
202
|
is_draft Boolean @default(true)
|
|
201
203
|
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
|
-
}
|