create-prisma-php-app 1.1.17 → 1.1.18

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.
@@ -11,7 +11,7 @@ datasource db {
11
11
  }
12
12
 
13
13
  model User {
14
- userId String @id @default(cuid())
14
+ id String @id @default(cuid())
15
15
  name String?
16
16
  email String? @unique
17
17
  password String?
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-prisma-php-app",
3
- "version": "1.1.17",
3
+ "version": "1.1.18",
4
4
  "description": "Prisma-PHP: A Revolutionary Library Bridging PHP with Prisma ORM",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",