reset-infra 1.0.15 → 1.1.0

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": "reset-infra",
3
- "version": "1.0.15",
3
+ "version": "1.1.0",
4
4
  "description": "ReSet – Database infrastructure, Prisma migrations & Zod schema generation",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -35,7 +35,7 @@ enum SponsorshipStatus {
35
35
  model User {
36
36
  id String @id @default(dbgenerated("gen_random_uuid()")) @db.Uuid
37
37
  name String @db.VarChar(100)
38
- email String @unique @db.VarChar(150)
38
+ email String @db.VarChar(150)
39
39
  password_hash String @db.Text
40
40
  role UserRole @default(ADICTO)
41
41
  created_at DateTime @default(now())