reset-infra 1.0.15 → 1.1.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reset-infra",
3
- "version": "1.0.15",
3
+ "version": "1.1.1",
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())
@@ -231,7 +231,6 @@ model SupportContact {
231
231
  id String @id @default(dbgenerated("gen_random_uuid()")) @db.Uuid
232
232
  user_id String @db.Uuid
233
233
  contact_name String @db.VarChar(100)
234
- phone String @default("") @db.VarChar(20)
235
234
  email String @default("") @db.VarChar(150)
236
235
  relationship String @default("") @db.VarChar(50)
237
236
  custom_relationship String @default("") @db.Text