@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/edge.js +5 -6
- package/index-browser.js +0 -1
- package/index.d.ts +12 -42
- package/index.js +5 -6
- package/package.json +1 -1
- package/schema.prisma +1 -1
- package/wasm.js +0 -1
package/package.json
CHANGED
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
|
|