reset-infra 1.0.8 → 1.0.9

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.8",
3
+ "version": "1.0.9",
4
4
  "description": "ReSet – Database infrastructure, Prisma migrations & Zod schema generation",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -102,8 +102,8 @@ model UserAddiction {
102
102
 
103
103
  model Sponsorship {
104
104
  id String @id @default(uuid()) @db.Uuid
105
- sponsor_id String @unique @default("00000000-0000-0000-0000-000000000000") @db.Uuid
106
- addict_id String @unique @default("00000000-0000-0000-0000-000000000000") @db.Uuid
105
+ sponsor_id String @default("00000000-0000-0000-0000-000000000000") @db.Uuid
106
+ addict_id String @default("00000000-0000-0000-0000-000000000000") @db.Uuid
107
107
  started_at DateTime @default(now())
108
108
  ended_at DateTime @default("9999-12-31T23:59:59Z")
109
109
  status SponsorshipStatus @default(PENDING)