@hirelink/database-prisma 1.0.2 → 1.0.3

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hirelink/database-prisma",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "A Prisma-based database package for Hirelink applications.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -8,7 +8,7 @@ datasource db {
8
8
  }
9
9
 
10
10
  model User {
11
- id String @id @default(uuid())
11
+ id String @id
12
12
  email String @unique
13
13
  first_name String?
14
14
  last_name String?