@creator.co/creatorco-prisma-client 1.0.82-alpha-bd13b4c → 1.0.82-alpha-64cbbc1

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
@@ -92,7 +92,7 @@
92
92
  },
93
93
  "./*": "./*"
94
94
  },
95
- "version": "1.0.82-alpha-bd13b4c",
95
+ "version": "1.0.82-alpha-64cbbc1",
96
96
  "sideEffects": false,
97
97
  "description": "Prisma client for creatorco Database"
98
98
  }
package/schema.prisma CHANGED
@@ -1322,7 +1322,6 @@ enum SocialProfileContactSource {
1322
1322
  }
1323
1323
 
1324
1324
  model SocialProfileContact {
1325
- id Int @id @default(autoincrement())
1326
1325
  type String
1327
1326
  value String
1328
1327
  source SocialProfileContactSource @default(MANUAL)
@@ -1334,6 +1333,7 @@ model SocialProfileContact {
1334
1333
 
1335
1334
  socialProfile SocialProfile @relation(fields: [socialProfileId], references: [id], onDelete: Cascade)
1336
1335
 
1336
+ @@id([type, value])
1337
1337
  @@map("social_profile_contact")
1338
1338
  }
1339
1339
 
package/wasm.js CHANGED
@@ -871,7 +871,6 @@ exports.Prisma.SocialProfileScalarFieldEnum = {
871
871
  };
872
872
 
873
873
  exports.Prisma.SocialProfileContactScalarFieldEnum = {
874
- id: 'id',
875
874
  type: 'type',
876
875
  value: 'value',
877
876
  source: 'source',