create-prisma-php-app 1.11.16 → 1.11.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.
package/composer.json CHANGED
@@ -17,6 +17,7 @@
17
17
  "php": "^8.1",
18
18
  "vlucas/phpdotenv": "^5.6@dev",
19
19
  "firebase/php-jwt": "dev-main",
20
- "phpmailer/phpmailer": "^6.9"
20
+ "phpmailer/phpmailer": "^6.9",
21
+ "guzzlehttp/guzzle": "7.8"
21
22
  }
22
23
  }
@@ -17,6 +17,8 @@ model User {
17
17
  password String?
18
18
  emailVerified DateTime?
19
19
  image String?
20
+ createdAt DateTime @default(now())
21
+ updatedAt DateTime @updatedAt
20
22
 
21
23
  roleId Int?
22
24
  userRole UserRole? @relation(fields: [roleId], references: [id])