reset-infra 1.1.0 → 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.1.0",
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",
@@ -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